我使用以下代码验证内容然后重定向:
def validateSomething(){
if(.....){
...
redirect(controller:'some', action:'index' )
return
}
}
它会重定向并呈现索引操作,但不会更改地址栏中的URL。网址仍为“.... / validateSomething”。我正在提交一个带有此值的值的表单。(我使用的是Grails 3.0.12)。
答案 0 :(得分:0)
如果您希望更改地址栏中的URL,可以使用以下内容:
重定向(uri:" / some / index")