我必须在调用控制器函数时呈现选择。
class FormController {
def document() {
render """<g:select name="tipo" from="${['','one','two']}" />"""
}
}
它不起作用..当我用这个函数替换一个 div 时,在 html 中什么也没有出现。
我必须在调用控制器函数时呈现选择。
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)