在控制器中渲染 Grails 标签



调用控制器函数时,我必须呈现一个选择。

class FormController {
    def document() {
        render """<g:select name="tipo" from="${['','one','two']}" />"""
    }
}

它不起作用..当我用这个函数替换div 时,html 中什么也没出现。

改用标签作为方法调用语法:

render g.select(name:"tipo" from:['','one','two'])
//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)

相关内容

  • 没有找到相关文章

最新更新