gpt4 book ai didi

python - 接收错误: Reverse for with arguments '()' and keyword arguments not found

转载 作者:太空狗 更新时间:2023-10-30 01:48:59 25 4
gpt4 key购买 nike

我在 Django 模板中创建链接时遇到错误。

我的模板是这样的:

<a href="{% url 'location_detail' pk=location.id %}">{{ location.name }}</a>

我的 urls.py 看起来像:

url(r'^location(?P<pk>\d+)/$', views.location_detail, name="location_detail"),

我的观点是这样的:

def location_detail(request, pk=None):

我得到错误:

Reverse for views.location_detail with arguments '()' and keyword arguments '{u'pk': 1L}' not found.

我正在使用 Django 1.5 和 python 2.7.2

谢谢!

最佳答案

问题是我在主项目 urls.py 上有一个 namespace :

url(r'^com/', include('com.urls', namespace="com")),

将 url 更改为:

{% url 'com:location_detail' pk=location.id %}

成功了

关于python - 接收错误: Reverse for with arguments '()' and keyword arguments not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17818034/

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