如何为国家/地区实施Grails Url Mapping

时间:2013-04-09 15:01:01

标签: grails

我的应用程序有点问题,我想实现这个:domain / countries / controller / ... 但我不知道我该怎么做。可以使用网址映射吗?

1 个答案:

答案 0 :(得分:0)

在你的UrlMappings中尝试这样的事情:

     static mappings = {
  name contryURL: "/$domain/$country/$controller/$action?/$id?"{
        constraints {
            //if you need them
        }
    }

这是假设域和国家/地区是参数。