-1

我想在 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")
4

1 回答 1

1

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

看看这个答案以获得清晰的画面。

于 2013-05-30T21:25:24.177 回答