嗨,我有一个自定义UserProfile
模型,我将使用它来存储特定于我的应用程序的用户数据:
from django.contrib.auth.models import User
class UserProfile(models.Model):
user = models.OneToOneField(User)
...
def __unicode__(self):
return self.user.username
我django-registration
用来抵抗和登录用户。
我的问题是 - 保存UserProfile
对象时自动保存对象的最佳方法auth.User
是什么?我可以假设UserProfile
模型上的所有自定义字段都可以保存为 null 并稍后更新。
非常感谢任何帮助。