gpt4 book ai didi

grails - 小组的Grails Urlmapping 404

转载 作者:行者123 更新时间:2023-12-02 15:15:42 24 4
gpt4 key购买 nike

我按组组织了URL映射。

来自UrlMappings的示例:

class UrlMappings {

static mappings = {
group "/rest", {
"/" {
controller = "rest"
action = "index"
}
"/method1" {
controller = "rest"
action = "method1"
}
}
"/webservice/" {
controller = "webservice"
action = "index"
}
}

我想要的是:当Url称为/ rest / notexists时,我需要此路径的404。但仅适用于/ rest组,因此404应该属于该组rest。其他404由我的 Backbone 路由器处理。

有任何想法吗?

最佳答案

我在其余小组的最后全部捕获了问题:

 "/**" {
controller = "rest"
action ="notFound"
}

关于grails - 小组的Grails Urlmapping 404,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62019287/

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