yi 2更新后返回上一页
更新记录后如何将用户重定向到上一页?这是典型的场景:
- 用户在索引页中对结果进行筛选或对记录进行分页,然后找到要编辑的记录并单击编辑按钮。他们更新该记录的数据,一旦他们点击"更新"按钮,他们将被重定向到索引视图,但带有先前选择的筛选器/页面。
更新后,我已尝试在我的控制器中使用以下内容
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)
谢谢!
解决方案
在您希望将用户重定向到添加的操作中
yiihelpersUrl::remember();
现在在任何控制器中进行下一次调用,如下所示:
return $this->goBack();
将用户重定向到"已标记"操作。
相关文章