Grails beforeInterceptor 有 2 个操作

发布于 2024-11-15 02:32:44 字数 362 浏览 2 评论 0原文

我们可以在 Grails 控制器的 beforeInterceptor 中定义 2 个不同的操作吗?我有一个带有以下 beforeInterceptor 的控制器:

def beforeInterceptor = [action:this.&debug]

def trimParams() {
    params?.each { it = it.toString().trim() }
}
def debug() {
    log.info("${actionUri} with params ${params}")
}

如何将“trimParams”操作与“debug”操作一起添加到拦截器?我不知道这个的确切语法。太感谢了。

Can we define 2 different actions in beforeInterceptor of a Grails controller? I have a controller with below beforeInterceptor:

def beforeInterceptor = [action:this.&debug]

def trimParams() {
    params?.each { it = it.toString().trim() }
}
def debug() {
    log.info("${actionUri} with params ${params}")
}

How can I add the 'trimParams' action to interceptor along with 'debug' action? I do not know the exact syntax of this. Thank you so much.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独木成林 2024-11-22 02:32:44

我建议您为拦截器定义一个单独的操作:

def beforeInterceptor = [action:this.&doBeforeStuff]

def doBeforeStuff() {
    trimParams(params)
    debug(params)
}

def trimParams() {
    params?.each { it = it.toString().trim() }
}
def debug() {
    log.info("${actionUri} with params ${params}")
}

我还没有尝试过,但它可能会有所帮助。

I suggest you defining a separate action for the interceptor:

def beforeInterceptor = [action:this.&doBeforeStuff]

def doBeforeStuff() {
    trimParams(params)
    debug(params)
}

def trimParams() {
    params?.each { it = it.toString().trim() }
}
def debug() {
    log.info("${actionUri} with params ${params}")
}

I have not tried it, but it might help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文