我将手机号码作为用户名,将active_code作为密码从视图文件(ajax)发送到jquery的操作,我希望登录用户拥有此数据。
此代码是我的行动:
//if entered information is correct then do:
$identity = \common\models\User::findOne(["username"=>$mobile]);
if(Yii::$app->user->login($identity))
return 100;
else
return 500;
它工作(return 100
)但页面刷新后,似乎用户没有登录!
有没有办法做到这一点?