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」アクションを「デバッグ」アクションとともにインターセプターに追加するにはどうすればよいですか? これの正確な構文はわかりません。どうもありがとう。