gpt4 book ai didi

python - 找不到 url 文件中的 Django 有效 URL。而是显示循环错误

转载 作者:行者123 更新时间:2023-12-04 08:53:26 24 4
gpt4 key购买 nike

这是我尝试使用 usercreationform 的 View 文件

from django.views import generic
from django.contrib.auth.forms import UserCreationForm
from django.urls import reverse_lazy


class UserRegisterView(generic.CreateView):
form_class = UserCreationForm
template_name = 'registration/register.html'
success_url = reverse_lazy('home')
这是我指向此 View 的 url 文件
from .views import UserRegisterView
from django.urls import path

url_patterns = [
path('register/', UserRegisterView.as_view(), name="register"),

]
现在,当我尝试运行服务器时,由于某种原因出现此错误
django.core.exceptions.ImproperlyConfigured: The included URLconf '<module 'members.urls' from does not appear
to have any patterns in it. If you see valid patterns in the file then the issue is probably caused by a circular import.
这没有任何意义。其中已经有一个指向我的 View 的 url 模式。

最佳答案

应该是 urlpatterns 而不是 url_patterns

关于python - 找不到 url 文件中的 Django 有效 URL。而是显示循环错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63976326/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com