我是Grails的新手,想要建模一个HasMany-Relationship,如下所示:
class Comment {
String content
static constraints = {}
}
class Text {
String content
static hasMany = [comments: Comment]
static constraints = {}
}
问题是,脚手架不起作用,在调用创建视图时会产生错误。我正在使用Grails 2.0.4。使用搜索后,我来到this stack overflow thread。
他们讨论了相同的错误,但他们说,他们手动更改了视图。我作为新手的问题是:如何更改视图,以便我可以对一个文本做很多评论?
格尔茨