groovyPageRenderer 与 groovyPagesTemplateEngine
groovyPageRenderer Vs groovyPagesTemplateEngine
- 我正在使用 Grails 版本 2.4.4
- 我的项目中有很多模板,我需要通过电子邮件发送它们
- 这些邮件的触发点是后台进程或网络请求
- groovyPagesTemplateEngine 不适用于作业、后台进程
以及没有 webrequest
的任何其他内容
我可以使用 PageRenderer 而不是 groovyPagesTemplateEngine 吗?
PageRenderer 有什么限制吗?
已关闭的 Grails 问题有评论 https://jira.grails.org/browse/GRAILS-3818
"There are some limitations as to what you can do since there is no request. And all links to others templates, controllers etc. have to be fully qualified. "
我在后台作业 LinkToController 中尝试过它,它似乎可以正常工作?
我不明白什么不适用于 PageRenderer bean?
PageRenderer
是您应该使用的是的,GroovyPagesTemplateEngine
级别较低,虽然您可以使用它,但 API 更难使用。
- 我正在使用 Grails 版本 2.4.4
- 我的项目中有很多模板,我需要通过电子邮件发送它们
- 这些邮件的触发点是后台进程或网络请求
- groovyPagesTemplateEngine 不适用于作业、后台进程 以及没有 webrequest 的任何其他内容
我可以使用 PageRenderer 而不是 groovyPagesTemplateEngine 吗? PageRenderer 有什么限制吗?
已关闭的 Grails 问题有评论 https://jira.grails.org/browse/GRAILS-3818
"There are some limitations as to what you can do since there is no request. And all links to others templates, controllers etc. have to be fully qualified. "
我在后台作业 LinkToController 中尝试过它,它似乎可以正常工作?
我不明白什么不适用于 PageRenderer bean?
PageRenderer
是您应该使用的是的,GroovyPagesTemplateEngine
级别较低,虽然您可以使用它,但 API 更难使用。