8
4

1 回答 1

11

您缺少观察模型上的“评论”属性,要么添加

observation = models.ForeignKey(Observation, related_name="comments")

或更改为

comments = fields.ToManyField('apps.api.CommentResource2', 'comment_set', null=True)
于 2013-04-14T15:13:33.130 回答