当前位置:  开发笔记 > 编程语言 > 正文

没有名为'forms'的模块Django

如何解决《没有名为'forms'的模块Django》经验,为你挑选了2个好方法。

我正在尝试为我的网站启动注册过程.我使用的是Python 3.3.5和Django 1.6.

我收到一个错误说No module named 'forms'.我是Python/Django的新手.

这是我的文件:

Views.py:

from django.shortcuts import render_to_response
from django.http import HttpResponseRedirect
from django.contrib import auth
from django.core.context_processors import csrf
from django.contrib.auth.forms import UserCreationForm
from forms import MyRegistrationForm


def register_user(request):
    if request.method == 'POST':
        form = MyRegistrationForm(request.POST)
        if form.is_valid():
            form.save()
            return HttpResponseRedirect('/accounts/register_success')

    else:
        form = MyRegistrationForm()
    args = {}
    args.update(csrf(request))

    args['form'] = form

    return render_to_response('register1.html', args)



def register_success(request):
    return render_to_response('register_success.html')

Forms.py

from django import forms
from django.contrib.auth.models import User
from django.contrib.auth.forms import UserCreationForm


class MyRegistrationForm(UserCreationForm):
    email = forms.EmailField(required=True)

    class Meta:
        model = User
        fields = ('username', 'email', 'password1', 'password2')

    def save(self, commit=True):
        user = super(MyRegistrationForm, self).save(commit=False)
        user.email = self.cleaned_data['email']
        # user.set_password(self.cleaned_data['password1'])

        if commit:
            user.save()

        return user

forms.py与views.py位于同一文件夹中.我尝试从django.forms导入MyRegistrationForm,但随后出现错误cannot import name MyRegistrationForm.



1> antimatter..:

如果您没有更改默认的locatoin views.py,那么它可能在您的应用程序文件夹中.尝试像from myapp.forms import MyRegistrationForm这里myapp是你的应用程序的名称



2> 小智..:

如果这是一个应用程序模块,请更改您的第6行:

from forms import MyRegistrationForm

至:

from .forms import MyRegistrationForm

(只需在表格前添加一个点)

推荐阅读
爱唱歌的郭少文_
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有