我试图设置一个Django博客应用程序,使用从用户到配置文件模型的一对一关系,以捕获模式信息,而不是默认的Django用户模型。我遇到的问题是我的个人资料模型没有保存,尽管成功注册了用户,我的个人资料表仍保持不变。 以下是我发现这种情况的看法:
@transaction.atomic
def profile_new(request):
if request.method == "POST":
user_form = UserForm(request.POST)
profile_form = ProfileForm(request.POST)
if user_form.is_valid() and profile_form.is_valid():
user = user_form.save(commit=False)
profile = profile_form.save(commit=False)
user.username = user.email
user.set_password(user.password)
user.save()
profile.user = user
profile.save()
return redirect('profile_detail', pk=user.pk)
else:
messages.error(request, ('Please correct the error below.'))
else:
user_form = UserForm()
profile_form = ProfileForm()
return render(request, 'accounts/update.html', {
'user_form': user_form,
'profile_form': profile_form
})
非常简单,完全没有错误运行,它实际上从未真正保存过Profile对象。 以下是表格:
from django import forms
from .models import User, Profile
class UserForm(forms.ModelForm):
"""confirm_password = forms.CharField()"""
class Meta:
model = User
fields = ('first_name', 'last_name', 'email', 'password')
class ProfileForm(forms.ModelForm):
class Meta:
model = Profile
fields = ('bio', 'birth_date', 'avatar', 'location')
Profile的模型:
from django.db import models
from django.contrib.auth.models import User
class Profile(models.Model):
user = models.OneToOneField(User, on_delete=models.CASCADE, primary_key=True)
bio = models.TextField(max_length=500, blank=True)
avatar = models.ImageField(upload_to = 'avatars/', default = 'avatars/default.jpg')
location = models.CharField(max_length=30, blank=True)
birth_date = models.DateField(null=True, blank=True)
有没有人看到Profile无法保存的原因? 我的第二个问题是:什么是保存和散列密码的正确方法?我发现我可以添加一个临时的确认密码'表单中的字段,但我不是如何散列并保存我得到的密码。
答案 0 :(得分:2)
尝试以下代码:
class Profile(models.Model):
user = models.OneToOneField(User, on_delete=models.CASCADE, blank=True,null=True)
如果user
字段为空,我认为您的个人资料表无法保存新记录!