无法为grails的创建页面中的List <string>输入值</string>

时间:2014-05-27 05:59:35

标签: mongodb grails gorm grails-plugin grails-domain-class

这是域类:

package com.sample

class Person {
       String id
       String name
       Integer age
       Address address
       List children
  static hasMany = [pets:Pet, children: String, aliases : Alias]

  static mapWith = "mongo"
  static constraints = {
           address nullable:true
  }
}

这是应用的创建页面:

create page of the app]

有人可以告诉我如何在创建人员页面中获取列表以及在编辑人员页面中可编辑的列表。 (我使用grails generate-view com.sample.Person命令生成的视图)

1 个答案:

答案 0 :(得分:0)

首先,您不需要域类中的List children。但我不确定grails是否支持与基本非域类型(在您的情况下为String)的关系的脚手架。如果删除列表无济于事,则需要手动处理此情况。