有一个班级
class Trip {
static constraints = {
sTrip(blank: true, nullable: true)
}
static hasMany = [trip: Trip]
static belongsTo = [sTrip: Trip]
String name
String toString() {
return this.name
}
}
我需要添加一个可选字段,我可以在其中选择此类已有的数据。
即与班级本身的多对多关系 我这样做了:
static hasMany = [trip: Trip]
static belongsTo = [sTrip: Trip]
但是从显示中只有一个下拉列表
如何提交多个列表?
答案 0 :(得分:0)
您需要将#RewriteCond %{SERVER_PORT} 80
#RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
#RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
#RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/[0-9a-zA-Z_-]+$
#RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]
属性添加到您的选择中,例如
multiple="true"
然后在您的控制器/服务中:
<g:select multiple="true" name="item" id="item" from="['item1', 'item2', 'item3']" />