我是grails的新手,只想一次學習一個。Grails動作重定向呼叫
我怎樣才能從另一個調用作用在同一個控制器的動作:
class ListProjectsController {
def index() {
redriect(action: sampleMethod)
}
def sampleMethod() {
//some codes here
}
}
我試圖重新導向,但這就造成一些錯誤,幫助嗎?
這裏是你有拼寫錯誤的方法名redirect
爲redriect
錯誤消息
http://i24.photobucket.com/albums/c22/Klifford_Kho/Capture_zps5j8nov9f.png
什麼是你的錯誤獲取和你想要達到什麼目標?當你在索引時只是重定向到另一個動作? –
是的,我只想學習如何重定向到另一個行動,不僅僅是從索引,但任何方法 –
你可以更新你的問題與你得到的錯誤消息。我懷疑你沒有sampleMethod操作的視圖。 –