如何在更新记录后将用户重定向到上一页?这是典型的情况:
我在更新后尝试在我的控制器中使用下面的
return $this->redirect('index',302); (this is not what I need)
return $this->redirect(Yii::$app->request->referrer); (this gets user back to update view and not to index view with filters)
return $this->goBack(); (this gets user to homepage)
谢谢!
答案 0 :(得分:7)
在您希望用户重定向到添加
的操作中\yii\helpers\Url::remember();
现在接下来打电话给任何控制器,如:
return $this->goBack();
将用户重定向到"标记为"动作。