問題:
yii2.0 redirect 無法正常跳到 beforeAction。
先來看看程式碼:
在正常情況下,使用return $this->redirect($url);
(建議教學:yii框架)
解決方式一:將變數名稱改一下,可改為userid,則redirect可正常跳轉。
解決方式二:在redirect後面使用send()
$this->redirect(登录页地址)->send(); $this->redirect(登录页地址);Yii::$app->response->send();
解決方式三:
$this->redirect(登录页地址); Yii::$app->end();
更多編程相關內容,請關注php中文網編程入門專欄!
以上是yii中redirect無法正常跳轉的詳細內容。更多資訊請關注PHP中文網其他相關文章!