我试图使用Grails 2.4.4整理一个基本的博客应用程序。我的域名模型如下:
class Commentable {
String title
static hasMany = [comments:Comment]
}
class Comment extends Commentable {
static belongsTo = [target:Commentable]
}
class Post extends Commentable {
static hasMany = [tags:Tag]
}
class Tag {
String label
static hasMany = [posts:Post]
static belongsTo = Post
}
在BootStrap.groovy的init方法中,我尝试按如下方式创建帖子和标签
def post = new Post();
post.setTitle("Post1");
post.save();
def tag = new Tag();
tag.setLabel("Tag1");
tag.save();
tag.addToPost(post);
tag.save();
会产生以下错误消息:
Message: No signature of method: io.dimitris.blog.Tag.addToPost() is
applicable for argument types: (io.dimitris.blog.Post) values:
[io.dimitris.blog.Commentable : 1]
Possible solutions: addToPosts(java.lang.Object)
我真的很感激任何关于我做错事的提示。
答案 0 :(得分:4)
您正在呼叫tag.addToPost(post)
,但需要tag.addToPosts(post)
。 hasMany
属性为static hasMany = [posts:Post]
。该映射中的键指示方法名称。如果您将其更改为static hasMany = [post:Post]
,那么该方法将为addToPost(post)
,但名称不太合理。