作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在grails中添加另一个child实例的最佳实践是什么?
如果我有这个域名
class Parent {
String name
static hasMany = [children: Child]
}
class Child {
String name
static belongsTo = [parent: Parent]
}
最佳答案
试试这个:
Parent parent = Parent.get(parentId)
Child child = new Child(
parent: parent,
name: 'name'
)
child.save()
parent.addToChildren(child)
parent.save()
Parent parent = Parent.get(parentId)
Child child = new Child()
child.name = 'name'
child.parent = parent
child.save()
parent.addToChildren(child)
parent.save()
关于grails - 在Grails中添加新的子实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33735835/
我是一名优秀的程序员,十分优秀!