gpt4 book ai didi

python - NoReverseMatch 错误。未找到 '...' 的反向

转载 作者:行者123 更新时间:2023-12-04 08:58:41 25 4
gpt4 key购买 nike

发生这种情况时,我试图在 Django 中实现动态 url
在我的 template.py 中,我添加了这一行

 <a href="{% url 'Index' %}" role="button">Go to Index</a>
我的网址.py
from django.contrib import admin
from django.urls import path, include

urlpatterns = [
path("admin/", admin.site.urls),
path("", include("moviez.urls"))
]
我的moviez.urls.py
from django.urls import path
from .views import IndexView

app_name = "moviez"

urlpatterns = [
path("", IndexView, name="Index")
]
我认为这绝对应该有用,但它返回了这个错误
NoReverseMatch at /
Reverse for 'Index' not found. 'Index' is not a valid view function or pattern name.
你能帮我调试一下吗?
任何帮助将不胜感激!

最佳答案

由于您定义了 app_name ,您需要将此添加为以冒号分隔的前缀( : ),因此:

<a href="{% url 'moviez:Index' %}" role="button">Go to Index</a>
有关更多信息,请参阅 URL namespaces and included URLconfs section of the documentation .

关于python - NoReverseMatch 错误。未找到 '...' 的反向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63662027/

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