Grails:将模板渲染为字符串

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Grails:将模板渲染为字符串相关的知识,希望对你有一定的参考价值。

how to render GSP template as String ?
g:render is taglib in gsp ( ) but you can call it on your controller using g.render().
  1. class MyController {
  2. def test = {
  3. def x = g.render(template:"/basecontroller/test",model:[name:"wysmedia.com"]); // stored as string ...
  4. render(x); // display the template instead render
  5. }
  6. }

以上是关于Grails:将模板渲染为字符串的主要内容,如果未能解决你的问题,请参考以下文章

在 Grails 中通过 AJAX 渲染模板

Grails - 从 Javascript 方法调用控制器和渲染模板

Grails 不会将变量传递给嵌套模板

从 Grails 中的控制器渲染 json 视图

Grails 渲染插件的空指针异常

如何在 grails 中使用渲染插件