gpt4 book ai didi

Grails 路由 - 忽略 css、js 和图像

转载 作者:行者123 更新时间:2023-12-04 23:29:46 26 4
gpt4 key购买 nike

添加这样的路由后,如何让 UrlMappings 忽略/css、/js 和/images

更新

"$username"(controller:"profile",action:"show") {
constraints {
username(notInList:['css','js','images'])
}
}

我可以使用 notInList 吗?我如何反转 inList?

最佳答案

来自 the manual :

If you are using wildcard URL mappings then you may want to exclude certain URIs from Grails' URL mapping process. To do this you can provide an excludes setting inside the UrlMappings.groovy class:


class UrlMappings = {
static excludes = ["/images/*", "/css/*"]
static mappings = {

}
}

这允许您从映射中排除目录。

更新 如果您想使用正则表达式,这可能会更好:
constraints {
username(matches:"^(?!(js|css|images)/).*")
}

此正则表达式匹配任何不以 js/ 开头的内容, css/ , 或 images/ .它通过零宽度负前瞻匹配( (?!…)

关于Grails 路由 - 忽略 css、js 和图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6988264/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com