我想知道是否有人在不使用原型的情况下在Grails 2.0.1中开发了像Country和State这样的依赖性下拉列表。感谢代码片段
答案 0 :(得分:0)
你可以使用远程功能和g:选择,比如
<g:select
onchange="${remoteFunction(
controller:'example',
action:'country',
update:'state',
params:'\'country=\'+$(\'#country\').val()' }"
name="country" ... />