在控制器中加载html片段

时间:2010-06-28 22:49:47

标签: grails groovy

我想在控制器的action方法中加载一个片段html。有没有办法做到这一点?

我想要实现的是实际上Controller操作使用json作为返回我的响应的格式(带有错误代码和其他信息),并包含从模板文件加载的html片段作为json响应的一部分。

我的回答是:

{
errCode: 200,
myHtml: "Some html portion loaded from a template file goes here"

... more data elements..
}

该操作将使用'render(contentType:“text / json”,data)返回响应;

1 个答案:

答案 0 :(得分:1)

你的意思是:http://mrhaki.blogspot.com/2010/05/grails-goodness-use-gsp-template-engine.html

很难从你的问题中看到你需要帮助的那一点