我有这个域类,比方说:
class Person {
String name
Integer age
//car data that needs to be shown and filled in views
//but not persisted in Person class
String model
String color
static afterInsert = {
def car = new Car(model: model, color: color)
car.save()
}
}
class Car {
String model
String color
}
我需要在我的Person
视图(create
和edit
)中显示在类中定义的模型和颜色属性,Person
但这些不必与此类保持一致。这些数据model
和color
必须使用Car
域类进行持久化,可能使用afterInsert
事件。换句话说,我需要使用来自另一个域类的视图来保存来自域类的数据。
提前致谢。