gpt4 book ai didi

grails - 如何将相同的值传递给Grails中的每个 View

转载 作者:行者123 更新时间:2023-12-02 14:16:38 25 4
gpt4 key购买 nike

我有一个列表需要传递给Grails中的每个 View 。如何以一种干净的方式来做?
我显然可以在每个 Action 中在渲染中传递它,但这似乎不是一个干净的解决方案。

问候。

最佳答案

这样的事情应该起作用:

// grails-app/conf/MyCustomFilters.groovy
class MyCustomFilters {

def filters = {
all(controller:'*', action:'*') {
// this is executed after the controller action and before the view is rendered
after = { Model model ->
model?.listOfNames = ['Jeff', 'Betsy', 'Jake', 'Zack']
}
}
}
}

关于grails - 如何将相同的值传递给Grails中的每个 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24926849/

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