一个简单的问题。我正在使用带有Doctrine ORM和sfGuardDoctrinePlugin的symfony1.4。我有一个名为'task'的symfony表单。我希望默认情况下将userId字段(如果用户表为FK到ID)设置为当前登录用户。我怎样才能做到这一点?
//apps/myapp/modules/task/actions
class taskActions extends sfActions
{
public function executeNew(sfWebRequest $request)
{
$this->form = new taskForm();
}
public function executeCreate(sfWebRequest $request)
{
$this->forward404Unless($request->isMethod(sfRequest::POST));
$this->form = new taskForm();
$this->processForm($request, $this->form);
$this->setTemplate('new');
}
}
答案 0 :(得分:0)
在没有看到您通过操作或通过$form->configure()
设置表单的方式回答有点棘手,但您可以使用以下方式访问当前用户ID:
$currentUserId = sfContext::getInstance()->getUser()->getGuardUser()->getId();
- 更新 -
根据您的更新,taskForm
似乎不是基于模型对象,否则您将通过构造函数传递对象,因此它必须是自定义表单。有两种方法可以为这只猫设置外观,你可以通过构造函数传递用户对象,也可以通过公共访问器设置值,如下所示:
class taskForm
{
protected $user;
public function setUser($user)
{
$this->user = $user;
}
public function getUser()
{
return $this->user;
}
public function configure()
{
// This should output the current user id which demonstrates that you now
// have access to user attributes in your form class
var_dump($this->getUser()->getGuardUser()->getId());
}
}
并设置它:
public function executeNew(sfWebRequest $request)
{
$this->form = new taskForm();
$this->form->setUser($this->getUser());
}
你可以做到的另一种方法是直接通过构造函数传递用户对象,然后你可以在表单中使用$this->getObject()->getUser()
引用它,虽然我不建议这样做因为它强制taskForm在用户上下文中。