0
什麼是做這樣的事情在Grails正確的方法:Grails的驗證依賴於其他屬性
class myDomainThing {
String description
MyOtherDomainThing otherThing
static constraints = {
description(nullable:if(otherThing))
otherThing(nullable:if(description))
}
}
所以我要麼希望這是給otherDomainThing鏈接或我想要一個字符串描述。