我想指定多个函数作为我的beforeInterceptor的异常(exception),如果可以的话,有人可以告诉我下面语法的正确版本吗?

def beforeInterceptor = [action: this.&auth, except: 'authenticate','index']

谢谢。

最佳答案

在Grails中的其他功能之后,我将假定语法是使用字符串列表。因此,例如:

def beforeInterceptor = [action: this.&auth, except: ['authenticate','index']]

10-07 19:15