作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我重定向到同一 Controller 中的另一个操作时,“请求”为空。
def updateEmployee() {
println "updateEmployee(): request =" + request.JSON
redirect(action: "createEmployee", params: params)
}
def createEmployee() {
def renderStatus = 500;
System.out.println "createEmployee() : request= " + request.JSON;
updateEmployee打印所有请求数据,但creteEmployee将其打印为null([:])
如何重定向“请求”(我的意思是 POST 数据)?
最佳答案
您无法重定向 POST 请求。重定向意味着一个新的 GET 请求,因此之前请求的所有先前数据都将丢失。
如果您需要在没有实际重定向的情况下调用另一个操作,请使用forward
:http://grails.org/doc/latest/ref/Controllers/forward.html
关于grails - 如何在grails中重定向请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21201300/
我是一名优秀的程序员,十分优秀!