在我的应用程序中,我必须添加一个带有返回 url 的参数。可能吗?
喜欢$this->redirect(Yii::app()->user->returnUrl . "&tv=1");
我的代码:
.
.
.
if (isset($_POST['LoginForm'])) {
$model->attributes = $_POST['LoginForm'];
// validate user input and redirect to the previous page if valid
if ($model->validate() && $model->login())
$this->redirect(Yii::app()->user->returnUrl);
}
.
.
.