这是非常基本的,但我找不到任何东西。我有一个按以下方式定义的用户配置文件:
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])
现在如何设置属性?