django – 使用unique = True字段验证ModelForm

这是一个简单的模型,字段是唯一的:

class UserProfile(models.Model):
    nickname = models.CharField(max_length=20, unique=True)
    surname = models.CharField(max_length=20)

视图允许用户使用ModelForm修改其配置文件:

class UserProfileForm(forms.ModelForm):
    class Meta:
        model = UserProfile

def my_profile(request):
    ...
    if request.method == 'GET':
        # Below, 'profile' is the profile of the current user
        profile_form = UserProfileForm(instance=profile)
    else:
        profile_form = UserProfileForm(request.POST)
        if profile_form.is_valid():
            ... # save the updated profile

    return render(request, 'my_profile.html', {'form': form})

问题是,如果用户没有更改其昵称,is_valid()总是返回False,因为唯一性检查.我需要唯一性检查,因为我不希望一个用户将其昵称设置为其他用户,但它不应该阻止用户将其昵称设置为其当前昵称.

我是否必须重写表单的验证,或者我是否更容易错过一些内容?

最佳答案 您必须将实例传递给未绑定和绑定的表单:

else:
    profile_form = UserProfileForm(request.POST, instance=profile)
    if profile_form.is_valid():
        ... # save the updated profile

这将确保更新当前用户的配置文件,而不是创建新的配置文件.

点赞