gpt4 book ai didi

django - NoReverseMatch : Unable to pass parameter from template to view.

转载 作者:行者123 更新时间:2023-12-02 03:01:25 33 4
gpt4 key购买 nike

我正在尝试在 Django 中创建一个简单的搜索表单。这是我目前所拥有的:

形式:

<form action="{% url 'search_pub' pub_name=pub_name %}" method="get">
Publication name: <input type="text" id="pub_name" name="pub_name" value="herald">
<input type="submit" value="Search">
</form>

网址.py

url(r'^search/$', views.search, name='search'),
url(r'^results/(?P<pub_name>[\w]+)/$', views.search_pub, name='search_pub'),

View .py

def search(request):
return render(request, 'urlapp/search.html')

def search_pub(request, pub_name):
pubs = Publication.objects.all().filter(title__icontains=pub_name)
return render(request, 'app/results.html', {
'publications': pubs
})

模型.py

class Publication(models.Model):
title = models.CharField(max_length=30)

当我在 http://localhost:8000/search/ 打开搜索页面时出现以下错误:

NoReverseMatch at /search/
Reverse for 'search_pub' with keyword arguments '{'pub_name': ''}' not found. 1 pattern(s) tried: ['results/(?P<pub_name>[\\w]+)/$']

我使用网站 pythex 验证正则表达式有效.

如果我转到 URL:http://localhost:8000/results/herald , 我得到了正确的结果。

我错过了什么?

最佳答案

您不能像使用 URL 参数一样使用 GET 变量。此外,{% url ... 值是在服务器端计算的,因此您不能在 HTML 表单中动态修改它们。我会做以下事情:

首先,更改以下行

url(r'^results/(?P<pub_name>[\w]+)/$', views.search_pub, name='search_pub'),

url(r'^results/$', views.search_pub, name='search_pub'),

然后,将您的 View 代码更改为如下所示:

def search_pub(request):                    # Remove pub_name from method signature
pub_name = request.GET.get('pub_name') # ...and fetch it from GET dict instead
...

最后,更改您的 form 标签:

<form action="{% url 'search_pub' %}" method="get">

请注意,从现在开始,您的网址将采用以下形式:

http://localhost:8000/results?pub_name=herald

更新:

如果你真的想要 URL 中的值,你可以从一个重定向到另一个:

将两个 URL 保存在您的 urls.py 中,并使用不同名称:

url(r'^results/(?P<pub_name>[\w]+)/$', views.search_pub, name='search_pub_clean'),
url(r'^results/$', views.search_pub, name='search_pub'),

和查看代码:

from django.shortcuts import redirect
def search_pub(request, pub_name=None):
if pub_name is None:
return redirect('search_pub_clean', pub_name=request.GET.get('pub_name'))
...

关于django - NoReverseMatch : Unable to pass parameter from template to view.,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45973002/

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