gpt4 book ai didi

grails - 以编程方式呈现 GSP

转载 作者:行者123 更新时间:2023-12-01 01:34:50 25 4
gpt4 key购买 nike

假设我的数据库中存储了一个 gsp 片段。如何以编程方式将其与数据模型合并以生成字符串。

最佳答案

任何 Grails 应用程序的 applicationContext 都包含一个名为

groovyPagesTemplateEngine

默认情况下,这是 GroovyPagesTemplateEngine 的一个实例.所以你可以在你的 Controller 或服务中使用这样的代码:
class MyService/MyController {
def groovyPagesTemplateEngine

String renderGSPToString(String uri, Map model) {
groovyPagesTemplateEngine.createTemplate(uri).make(model).toString()
}
}

注意:这个片段并不是真正取自运行代码,它应该只是澄清这个想法。

关于grails - 以编程方式呈现 GSP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2658268/

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