您的位置:首页 > 编程语言 > PHP开发

Yii2 登录报错

2016-03-10 21:44 489 查看
当用数据库登录系统报如下错误时

PHP Recoverable Error – yii\base\ErrorException

Argument 1 passed to yii\web\User::login() must be an instance of yii\web\IdentityInterface, instance of app\modules\admin\models\AdminUser given, called in /home/ser/web_root/sun/modules/admin/models/LoginForm.php on line 61 and defined

请把之前的类定义改成如下语句

class AdminUser extends \yii\db\ActiveRecord implements \yii\web\IdentityInterface{

....

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: