1
我有映射:如何區分Grails的URL映射
"/$controller/$action?/$id?"{
constraints {
// apply constraints here
}
} // i used scaffolding and i think this is required by the generated stuff
'/'(controller:'home') //for the home page
'/$param1?/$param2?'(controller:'search') //for a search page
所需的URL顯示在瀏覽器:
www.site.com/ - 家庭
www.site .com /關鍵字1 /關鍵字2 - 用這些可選關鍵字搜索
這似乎工作,但我的問題是: 我可以期待這是正確的,或者在某些情況下,Grails將事情混淆?
如果我使用'/ $ param1/$ param2'(controller:'search')和'/ $ param1'(controller:'search')會怎麼樣? – calin 2011-02-09 10:17:19