问题描述
|
所有,
我想找出是否可以重定向到VIEW中的特定“ 0”。
基本上,在用户单击视图中的提交之后,提交成功后,我想将用户重定向到视图中的特定“ 1”。
这是我目前正在使用的代码
$this->redirect(array(\'action\'=>\'view\',$id));
这会将用户重定向到http:// cakephexample / articles / view / 4。但是,我希望将它们转移到http:// cakePHPexample / articles / view / 4#comments。
如何使用redirect选项实现?
谢谢,
解决方法
你试过
$this->redirect(array(\'action\'=>\'view\',$id,\'#comments\'));
吗?