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