调用未定义的方法在yii2中出错findIdentity()

时间:2015-10-19 06:01:36

标签: php session yii2 identity

我将自己的网站托管到了新域名。当我点击一些链接时,网址重定向到索引页面时出现此错误。

PHP致命错误 - yii\base\ErrorException

调用未定义的方法app\models\TblAccount::findIdentity()

此错误与会话有关吗?请给我解决问题的方法。

2 个答案:

答案 0 :(得分:0)

从错误看,您的TblAccount类中没有实现findIdentity()方法。 IdentityInterface要求您实现它 - Assert that code does NOT compile

向我们展示您的代码,以便我们提供更多帮助

答案 1 :(得分:0)

  

这需要在您的用户模型中使用FindIdentity()方法,如下所示

public static function findIdentity($id)
{
    return static::findOne($id);
}