我有这个:
static mappings = {
"/a/b/$id/stuff"(controller: "stuff", action "action1" )
"/a/b/$id/stuff/$stuffId"(controller: "stuff", action "action2" )
"/a/b/$id/stuff/$stuffId/c"(controller: "stuff", action "action3" )
}
我可以点击action1
和action2
,但我无法点击action3
,因为它会返回404
。
发生了什么事?
答案 0 :(得分:1)
def method(){
}
无效。
def method = {
}
会工作。
答案 1 :(得分:0)