Django的形式是有效的()失败 [英] django form is valid() fails

查看:25
本文介绍了Django的形式是有效的()失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用django创建注册表单,当我提交表单时,valid()函数会失败,并且我不确定为什么.我将我的注册和登录页面全部放在一个html页面上,尽管我将所有字段名称都称为不同的名称,例如login_username.

I am trying to create a registration form using django, when I submit my form the is valid() function fails and I am not sure why. I have my registration and login page all on one html page, although, I have called all the field names different names, eg login_username.

forms.py

class SignUpForm(forms.Form):
    username = forms.CharField(label='Username', max_length=20,widget=forms.TextInput(attrs={'class': 'form-control','placeholder':'Enter Username'}))
    conUsername = forms.CharField(label='Confirm Username', max_length=20,widget=forms.TextInput(attrs={'class': 'form-control','placeholder':'Confirm Username'}))
    firstName = forms.CharField(label='First Name', max_length=20,widget=forms.TextInput(attrs={'class': 'form-control','placeholder':'Enter Firstname'}))
    lastName = forms.CharField(label='Last Name', max_length=20,widget=forms.TextInput(attrs={'class': 'form-control','placeholder':'Enter LastName'}))
    email = forms.CharField(label='Email', max_length=220,widget=forms.TextInput(attrs={'class': 'form-control','placeholder':'Enter Email','type':'email'}))
    conEmail = forms.CharField(label='Confirm Email', max_length=220,widget=forms.TextInput(attrs={'class': 'form-control','placeholder':'Confirm Email','type':'email'}))
    password = forms.CharField(label="Confirm Password", max_length=20,widget=forms.TextInput(attrs={'class': 'form-control','type':'password','placeholder':'Enter Password'}))
    conPassword = forms.CharField(label="Confirm Password", max_length=20,widget=forms.TextInput(attrs={'class': 'form-control','type':'password','placeholder':'Confirm Password'}))

views.py

def SignUp(request):
    regForm = SignUpForm()
    form = LoginForm()
    if request.method == 'POST':

        if regForm.is_valid():
            username = regForm.cleaned_data('username')
            print username
            confirm_username = regForm.cleaned_data('conUsername')
            first_name = regForm.cleaned_data('firstName')
            last_name = regForm.cleaned_data('lastName')
            email = regForm.cleaned_data('email')
            confirm_email = regForm.cleaned_data('conEmail')
            password = regForm.cleaned_data('password')
            confirm_password = regForm.cleaned_data('conPassword')



                #try:
                    #user = User.objects.get(username=request.POST['username'])
                    #return render(request, 'index.html',{'error_message':'username must be unique'})
                #except User.DoesNotExist:  
                    #user = User.objects.create_user(request.POST['username'], password=request.POST['password'])
                    #login(request, user)
                    #return render(request, 'index.html')
        else: 
            return render(request,'index.html',{'username_error':'usernames didnt match','form':form,'regForm':regForm})


    else:
        return render(request, 'index.html',{'form':form,'regForm':regForm})

index.html

index.html

<form class="regForm" method="POST" action="{% url 'signup' %}">
        {% csrf_token %}
        {{username_error }}
        <div class="row">
        <div class="col-md-2 col-md-offset-8">
        <div class="form-group">
            {{regForm.error_message.username}}
           {{ regForm.username }}
        </div>
    </div>
      <div class="col-md-2 ">
    <div class="form-group">
      {{error_message.conUsername}}
           {{ regForm.conUsername }}
        </div>
    </div>
</div>
      <div class="row">
        <div class="col-md-2 col-md-offset-8">
        <div class="form-group">
           {{ regForm.firstName }}
        </div>
    </div>
        <div class="col-md-2">
    <div class="form-group">
           {{ regForm.lastName }}
        </div>
    </div>
</div>
        <div class="row">
        <div class="col-md-4 col-md-offset-8">
        <div class="form-group">
           {{ regForm.email }}
        </div>
    </div>
</div>
    <div class="row">
        <div class="col-md-4 col-md-offset-8">
        <div class="form-group">
           {{ regForm.conEmail }}
        </div>
    </div>
</div>
<div class="row">
        <div class="col-md-2 col-md-offset-8">
        <div class="form-group">
           {{ regForm.password }}
        </div>
    </div>
      <div class="col-md-2">
    <div class="form-group">
           {{ regForm.conPassword }}
        </div>
    </div>
</div>

      <div class="row">
        <div class="col-md-3 col-md-offset-9">
        <div class="form-group">
            <button type="submit" id="regBtn" class="btn btn-default">Submit</button>
        </div>
    </div>
</div>

      </form>

推荐答案

现在您的表单始终为空,因此无效.您忘记了将请求POST内容添加到表单中.

Right now your form is always empty and therefore invalid. You forgot to add the request POST content to the form.

def SignUp(request):
    # ...
    if request.method == 'POST':
        regForm = SignupForm(request.POST)  # form needs content
        if regForm.is_valid():
            # ...

如果在调用 .is_valid()时卡住,则可以 print(regForm.errors)查看最新消息.

If you get stuck when calling .is_valid(), you can print(regForm.errors) to see what's up.

这篇关于Django的形式是有效的()失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆