关于symfony中的操作

时间:2011-01-02 22:27:15

标签: php model-view-controller symfony1

在我的网站上,我有一组小组。这些小组有活动,论坛等。我使用symfony,我有以下文件:

class GroupActions extends sfActions{


public function preExecute(){

   $request = $this->context->getRequest();


   $this->group = fGroup::getGroupById($request->getRequestParameter('id_group'));

   //Group security

   $this->group_security = $this->group->getSecurity();

   //More required actions about groups

   ....


}



class ForumActions extends GroupActions {


public function preExecute() {


    parent::preEcecute();

    $this->forum = $this->group->getForums();


}

ForumActions扩展了GroupActions,因为我需要组数据。例如,请求:

/组/ 2 /论坛

转发到ForumActions,我可以获得小组的数据。

这是对的吗?

感谢。

1 个答案:

答案 0 :(得分:0)

在这里,我认为这里有一个错误:

$this->group = fGroup::getGroupById($request->getRequestParameter('id_group'));

它应该是:

$this->group = fGroup::getGroupById($request->getParameter('id_group'));

也许这就是你最终获得空组信息的方式。此外,它始终是一种练习,在操作中定义您的类变量,然后在某些方法中初始化它们(getter和setter也可以帮助。)因此,您可以确保可能需要变量的其他人可以获得变量。