Django:保存用户个人资料

时间:2012-08-03 21:39:10

标签: python django python-2.x user-profile

这是非常基本的,但我找不到任何内容。我有以下列方式定义的用户配置文件:

def create_user_info(sender, instance, created, **kwargs):
    if created:
        UserInfo.objects.create(user=instance)

User.profile = property(lambda u: UserProfile.objects.get_or_create(user=u)[0])

现在如何设置属性?

1 个答案:

答案 0 :(得分:3)

首先关闭。修补猴子User不是正确的方法。在settings.py中设置AUTH_PROFILE_MODULE = 'yourapp.UserInfo',然后您可以自动使用user_instance.get_profile()来获取个人资料。

那么,然后修改您刚刚执行的配置文件:

profile = user.get_profile()
profile.some_field = 'some value'
profile.save()