我有这个:
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
and action2
,但我不能击中action3
,因为它返回 a 404
。
这是怎么回事?