30得票3回答
Django:在扩展User时,是更好地使用OneToOneField(User)还是ForeignKey(User,unique = True)?

我在寻找有关在扩展Django User模型创建UserProfile模型时,是使用OneToOneField(User)还是ForeignKey(User, unique=True)的矛盾信息。哪种方法更好?:class UserProfile(models.Model): user...

21得票3回答
在Django中使用Django注册应用程序处理账户/个人资料的好地方在哪里?

我注意到在使用Django注册后,它会将我重定向到accounts/profile/。默认情况下,Django注册的url.py不处理accounts/profile/,因此我需要创建自己的视图。 实际上,这个问题有三个方面: 为什么登录后会重定向到accounts/profile/?有...