有这个html,我想在按下该URL时将2个参数传递给函数:
htmlpage
{% for n in notifications %}
<li style="..."><b>{{ n.title }}</b> - {{ n.description }}
<a href="{% url 'update-notify-status' n.id n.title %}" >Don't show again</a>
{% endfor %}
urls.py
url(r'^notification_htmlv2/update_status/([0-9]{4})/([0-9]{4})$', 'Notifications.views.updateStatus',
name="update-notify-status"),
views.py
def updateStatus(request,noteId,noteTile):
q=History.objects.filter(notification_id=noteId,title=noteTile).order_by('-id')[0]
当我启动程序时,它会出现错误&#34; NoReverseMatch&#34;。 我遵循这个例子:https://docs.djangoproject.com/en/1.8/topics/http/urls/
反向解析网址的
章节答案 0 :(得分:1)
我打赌n.id
和n.title
都不匹配([0-9]{4})
。
您应该更新您的网址格式,以处理任何可能的id
和title
值。
类似的东西:
r'^notification_htmlv2/update_status/([0-9]+)/([a-zA-Z0-9]+)$'