我使用forward
而不是redirect
(隐藏url中的参数),问题是我想传递一个片段,forward
所以我的页面将滚动到指定的位置。使用redirect
,这有效:
redirect(controller: "mycontroller", action: "myaction", fragment: "anchor")
但是forward
,它不会滚动到锚点位置:
forward(controller: "mycontroller", action: "myaction", fragment: "anchor")
我该如何解决这个问题?