Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

User and UserProfile is related with 'OneToOneField'

I have fields = [] to suppress all other fields listed in the dehydrate method,
but it doesn't work.(shows all the fields in the UserProfile model)

class UserProfileResource(ModelResource):

    user = fields.OneToOneField(UserResource, 'user')

    class Meta:
        queryset = UserProfile.objects.all()
        fields = [] ## here, this doesn't work as intended

    def dehydrate(self, bundle):
        bundle.data['username'] = bundle.obj.user.username
        bundle.data['id'] = bundle.obj.user.id
        bundle.data['url_profile_image'] = bundle.obj.url_profile_image # this is a property call
        bundle.data['url_profile_image_thumbnail'] = bundle.obj.url_profile_image_thumbnail
        return bundle
share|improve this question

1 Answer

up vote 1 down vote accepted

Yes, it's a strange behavior of Tastypie. But fields = [''] works as well.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.