1

我有一个 UserProfile 类:

class UserProfile(models.Model):
    user = models.OneToOneField(User)
    bio = models.CharField(max_length=180, null=True)

这与 User 类相关联。

AUTH_PROFILE_MODULE = 'plantvillage.userprofile'

我想通过tastepie提供一个API,这样可以同时管理用户详细信息和用户配置文件详细信息。如果可能的话,我不想公开两个接口(一个用于用户,一个用于用户配置文件)。

我像这样设置我的资源:

class ProfileResource(ModelResource):
    class Meta:
        queryset = UserProfile.objects.all()
        resource_name = 'profile'
        authentication = ApiKeyAuthentication()
        authorization = DjangoAuthorization()
        allowed_methods = ['get', 'put', 'patch']

class UserResource(ModelResource):
    profile = fields.ToOneField(ProfileResource, 'userprofile', full=True)

    class Meta:
        queryset = User.objects.filter(is_staff=False)
        resource_name = 'usr'
        authentication = ApiKeyAuthentication()
        authorization = DjangoAuthorization()

        excludes = ['password', 'is_active', 'is_staff']

然而,更新

curl --dump-header - -H "Authorization: ApiKey abc6@abc.com:1432ece6a1f34fae24a77315b5c924f756f13807" -H "Content-Type: application/json" -X PATCH --data '{"profile":{"bio":"aquarium"}}' "http://127.0.0.1:8000/api/usr/25/"

导致此错误:

"error_message": "duplicate key value violates unique constraint \"plantvillage_userprofile_user_id_key\"\n", "traceback": "Traceback (most recent call last):\n\n  File \"/usr/local/lib/python2.6/dist-packages/django_tastypie-0.9.12_alpha-py2.6.egg/tastypie/resources.py\", line 196, in wrapper\n

我可以做哪些改变来完成这项工作?

4

1 回答 1

2

您可以完全摆脱并从要公开UserResource的模型中添加字段,如下所示:User

username = fields.CharField( attribute = 'user__username' )

这不仅会User在 GET 请求的情况下从模型发送正确的数据,而且还会处理更新。

于 2012-09-05T03:06:48.910 回答