Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个域结构,如:
Author hasMany Books.
Author hasMany Books
域都有 lastUpdated 和 dateCreated 字段。这很好用,但问题是当我将新元素(书)添加到作者的 hasMany 集合时。作者的 lastUpdated 也发生了变化。那么,对于这种特殊情况,我可以防止这种情况发生吗?解决方案之一可能是添加另一个字段,例如“UpdatedDate”,但我不想走这条路。
提前致谢。
您可以尝试添加方法:
def beforeUpdate() { }
到您的Author域并在那里实现更新lastUpdated字段的逻辑。见相关链接。
Author
lastUpdated