2014-01-18 96 views
2

當我重定向到同一控制器中的另一個動作時,'請求'爲空。如何在grails中重定向請求

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打印它爲空([:])

如何重定向 '請求'(我的意思是POST數據)?

+1

對於澄清,空和空地圖是非常不同的事情。 –

+0

哦!感謝@ BurtBeckwith指出了區別 – vikas

回答