在控制器中渲染 Grails 标签
Posted
技术标签:
【中文标题】在控制器中渲染 Grails 标签【英文标题】:render Grails tag in controller 【发布时间】:2012-09-13 23:23:58 【问题描述】:我必须在调用控制器函数时呈现一个选择。
class FormController
def document()
render """<g:select name="tipo" from="$['','one','two']" />"""
它不起作用。当我用这个函数替换一个 div 时,在 html 中什么也没有出现。
【问题讨论】:
【参考方案1】:改用tag as method call 语法:
render g.select(name:"tipo" from:['','one','two'])
【讨论】:
谢谢:render(text:g.select(name:"tipo" from:['','one','two']))
【参考方案2】:
//Build your output string as the next:
def output = g.select(name:"tipo" from:['','one','two'])
//And add any other string or tag if you need
output = "Tipo: " + output
render (text: output)
【讨论】:
以上是关于在控制器中渲染 Grails 标签的主要内容,如果未能解决你的问题,请参考以下文章
Grails - 从 Javascript 方法调用控制器和渲染模板