我想在页面中显示会员信息。
这是我的routing.yml
member_show:
url: /membres/profil/:id
class: sfDoctrineRoute
options: { model: sfGuardUser, type: object }
param: { module: member, action: show }
这是我的actions.class.php
public function executeShow(sfWebRequest $request)
{
if($this->getUser()->isAuthenticated())
{
$this->member = $this->getRoute()->getObject();
}
else
{
$this->redirect('@homepage');
}
}
但我得到这个错误:
“sfGuardUser”上的未知记录属性/相关组件“用户”
这是堆栈跟踪: