我试过
public function getName()
{
return 'TEST';
}
在UserIdentity.php中,但似乎没有更改Yii :: app() - > user-> name
的值答案 0 :(得分:11)
在您定义的课程UserIdentity
中,您需要使用setState(name, value)
方法设置新状态。
例如,在方法authenticate
中,如果用户是好的:
//if the user is good (good login and good password)
$this->_id=$record->id;
$this->setState('name', $record->name);
$this->errorCode=self::ERROR_NONE;
然后您就可以致电Yii::app()->user->name