4

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

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

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

4

2 回答 2

6

改为使用标记作为方法调用语法:

render g.select(name:"tipo" from:['','one','two'])
于 2012-09-21T14:25:51.880 回答
0
//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)
于 2014-06-19T11:35:41.450 回答