1

我想在页面中显示会员信息。

这是我的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”上的未知记录属性/相关组件“用户”

这是堆栈跟踪:

http://pastebin.com/G1rcLL6r

4

1 回答 1

1

根据您作为评论发布的堆栈跟踪,您应该$this->getResponse()->setTitle('XX - '.$this->member->getUsername());在第 59 行写入apps/frontend/modules/member/actions/actions.class.php

于 2012-10-03T22:11:45.347 回答