为grails请求添加时间戳

时间:2013-05-30 20:55:58

标签: grails

我想为grails中的一个请求添加时间戳。我该怎么做呢 url末尾的时间戳的原因是为了防止在浏览器中进行缓存。

class UrlMappings {
  static mappings = {
    "/$controller/$action?/$id?"{
        constraints {
            // apply constraints here
        }
    }
    "/"(controller: "main")
    "/build/onetime/place"(controller: "main", action: "placeInAction")
}

我想将时间戳添加到这个

"/build/onetime/place"(controller: "main", action: "placeInAction")

1 个答案:

答案 0 :(得分:1)

如果您只想添加时间戳以避免缓存,则无需在UrlMapping中将其映射,只需将其作为查询参数附加到网址。

请查看此answer以获得清晰的图片。