如何从tastypi中的两个ForeignKey字段获取数据?

2024-04-26 18:47:47 发布

您现在位置:Python中文网/ 问答频道 /正文

我有两个模型。你知道吗

class Eatery(models.Model):
    class Meta:
        db_table = 'eatery'

    date_pub = models.DateTimeField(auto_now_add=True)
    name = models.CharField(max_length=54, blank=True)
    description = models.TextField(max_length=1024)
    approve_status = models.BooleanField(default=False)
    author = models.ForeignKey(User, null=False, blank=True, default = None, related_name="Establishment author")

    class Comments(models.Model):
        class Meta:
            db_table = 'comments'

        eatery = models.ForeignKey(Eatery, null=False)
        author = models.ForeignKey(User, null=False)
        date_pub = models.DateTimeField(auto_now_add=True)
        approve_status = models.BooleanField(default=True)
        description = models.TextField(max_length=512)

我的TastyPie模型:

class EateryCommentsResource(ModelResource):
    user = fields.ToOneField(UserResource, 'author', full=True)

    class Meta:
        queryset = Comments.objects.all()
        resource_name = 'comments_eatery'
        filtering = {
            'author': ALL_WITH_RELATIONS
        }
        include_resource_uri = False
        #always_return_data = True
        paginator_class = Paginator

class EateryResource(ModelResource):

    user = fields.ToOneField(UserResource, 'author', full=True)
    comments = fields.ForeignKey(EateryCommentsResource, 'comments', full=True)

    class Meta:
        queryset = Eatery.objects.all()
        #excludes = ['description']
        resource_name = 'eatery'
        filtering = {
            'author': ALL_WITH_RELATIONS,
            'comments': ALL_WITH_RELATIONS,
        }
        fields = ['user', 'comments']
        allowed_methods = ['get']
        serializer = Serializer(formats=['json'])
        include_resource_uri = False
        always_return_data = True
        paginator_class = Paginator
        authorization = DjangoAuthorization()

我无法用评论获取EateryResource。当我没有评论的时候,它就起作用了。如何使用UserResource和CommentsResource获取EaterySourse。 对不起我的英语。谢谢。你知道吗


Tags: namefalsetruefieldsmodelscommentslengthresource
1条回答
网友
1楼 · 发布于 2024-04-26 18:47:47

由于注释通过ForeignKey链接到您的餐厅,因此您需要如下定义您的EateryResource

class EateryResource(ModelResource):

    user = fields.ToOneField(UserResource, 'author', full=True)
    comments = fields.ToManyField(EateryCommentsResource, 'comment_set', full=True)

相关问题 更多 >