Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/django/24.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Django auth_用户表的问题_Django_Django Views - Fatal编程技术网

Django auth_用户表的问题

Django auth_用户表的问题,django,django-views,Django,Django Views,我想在auth_user表中插入用户详细信息,但它给出了一个错误,create_user()得到了一个意外的关键字参数“first_name” forms.py from django import forms from django.contrib.auth.models import User from django.forms import ModelForm from customer_reg.models import Customer class Registration_Form

我想在auth_user表中插入用户详细信息,但它给出了一个错误,create_user()得到了一个意外的关键字参数“first_name”

forms.py

from django import forms
from django.contrib.auth.models import User
from django.forms import ModelForm
from customer_reg.models import Customer

class Registration_Form(ModelForm):
       first_name  = forms.CharField(label=(u'First Name'))
       last_name   = forms.CharField(label=(u'Last Name'))      
       username   = forms.CharField(label=(u'User Name'))
       email      = forms.EmailField(label=(u'Email Address'))
       password   = forms.CharField(label=(u'Password'), widget=forms.PasswordInput(render_value=False))

       class Meta:
              model=Customer
              exclude=('user',)

       def clean_username(self):
                username=self.cleaned_data['username']
                try:
                      User.objects.get(username=username)
                except User.DoesNotExist:
                      return username
                raise forms.ValidationError("The Username is already taken, please try another.")
       def clean_password(self):
                password=self.cleaned_data['password']
                return password
from django.contrib.auth.models import User
from customer_reg.models import Customer
from django.http import HttpResponseRedirect
from django.shortcuts import render_to_response
from django.template import RequestContext
from customer_reg.forms import Registration_Form


def CustomerRegistration(request):
    if request.user.is_authenticated():
        return HttpResponseRedirect('/customer_profile/')
    if request.method == 'POST':
        form = Registration_Form(request.POST)
        if form.is_valid():
            user=User.objects.create_user(first_name=form.cleaned_data['first_name'], last_name=form.cleaned_data['last_name'], username=form.cleaned_data['username'], email=form.cleaned_data['email'], password = form.cleaned_data['password'])

            user.save()

            customer=user.get_profile()
            customer.birthday=form.cleaned_data['birthday']
            customer.website=form.cleaned_data['website']
            customer.store=form.cleaned_data['store']
            customer.welcomemail=form.cleaned_data['welcomemail']
            customer.save()

            return HttpResponseRedirect('/customer_profile/')
        else:
                return render_to_response('customer_register.html',{'form':form} , context_instance=RequestContext(request)) 
    else:
        ''' user is not submitting the form, show them a blank registration form '''

            form = Registration_Form()
            context={'form':form}
            return render_to_response('customer_register.html',context , context_instance=RequestContext(request))
视图.py

from django import forms
from django.contrib.auth.models import User
from django.forms import ModelForm
from customer_reg.models import Customer

class Registration_Form(ModelForm):
       first_name  = forms.CharField(label=(u'First Name'))
       last_name   = forms.CharField(label=(u'Last Name'))      
       username   = forms.CharField(label=(u'User Name'))
       email      = forms.EmailField(label=(u'Email Address'))
       password   = forms.CharField(label=(u'Password'), widget=forms.PasswordInput(render_value=False))

       class Meta:
              model=Customer
              exclude=('user',)

       def clean_username(self):
                username=self.cleaned_data['username']
                try:
                      User.objects.get(username=username)
                except User.DoesNotExist:
                      return username
                raise forms.ValidationError("The Username is already taken, please try another.")
       def clean_password(self):
                password=self.cleaned_data['password']
                return password
from django.contrib.auth.models import User
from customer_reg.models import Customer
from django.http import HttpResponseRedirect
from django.shortcuts import render_to_response
from django.template import RequestContext
from customer_reg.forms import Registration_Form


def CustomerRegistration(request):
    if request.user.is_authenticated():
        return HttpResponseRedirect('/customer_profile/')
    if request.method == 'POST':
        form = Registration_Form(request.POST)
        if form.is_valid():
            user=User.objects.create_user(first_name=form.cleaned_data['first_name'], last_name=form.cleaned_data['last_name'], username=form.cleaned_data['username'], email=form.cleaned_data['email'], password = form.cleaned_data['password'])

            user.save()

            customer=user.get_profile()
            customer.birthday=form.cleaned_data['birthday']
            customer.website=form.cleaned_data['website']
            customer.store=form.cleaned_data['store']
            customer.welcomemail=form.cleaned_data['welcomemail']
            customer.save()

            return HttpResponseRedirect('/customer_profile/')
        else:
                return render_to_response('customer_register.html',{'form':form} , context_instance=RequestContext(request)) 
    else:
        ''' user is not submitting the form, show them a blank registration form '''

            form = Registration_Form()
            context={'form':form}
            return render_to_response('customer_register.html',context , context_instance=RequestContext(request))
如果我将views.py编辑为

user=User.objects.create_user(username=form.cleaned_data['username'], email=form.cleaned_data['email'], password = form.cleaned_data['password'])
然后它成功地工作了

我已经试过名字名字

知道我在哪里犯了错误吗?

管理器方法只接受三个参数,
用户名
电子邮件
(可选)和
密码
(可选)

创建用户后,可以修改,然后再次保存

user=User.objects.create_user(username=form.cleaned_data['username'], email=form.cleaned_data['email'], password = form.cleaned_data['password'])
user.first_name = form.cleaned_data['first_name']
user.last_name = form.cleaned_data['last_name']
user.save()

如果您希望能够使用管理界面进行注册,则必须更改应用程序中的admin.py

客户匹配查询不存在。关于这个错误,我可以将我自己的模板添加到管理面板中,从数据库中获取数据并将其显示给管理员吗?如果是,请给出一个示例,我如何在我的管理面板中看到它?我想你可以在这里找到答案: