yii2高级登录功能始终返回无效的用户名和密码

时间:2015-08-20 11:11:08

标签: yii2

我没有对yii登录功能进行任何更改,但在提供正确的用户名和密码时会返回错误

public function actionLogin()
{
    if (!\Yii::$app->user->isGuest) {
        return $this->goHome();
    }

    $model = new LoginForm();
    if ($model->load(Yii::$app->request->post()) && $model->login()) {
        return $this->render('index');
    } else {
        return $this->render('login', [
            'model' => $model,
        ]);
    }
}

1 个答案:

答案 0 :(得分:0)

尝试使用:

return $this->redirect(['site/index']);

代替return $this->render('index');