开发者

pass data from the action layer to the model

I have an DQL query in LocationTable.class.php

For this query i need an id which is passed to the action via the URL ?id=2

In the action i can access this with $request->getParamater('id'), but how can i also make this available to the model where my query resides? i need it for a where clause开发者_JS百科.


When you call the function from the action, pass it the variable:

In action:

Doctrine::getTable('Location')->yourFunction($request->getParameter('id'));

In LocationTable:

public function yourFunction($id)
{
  ...
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜