我在 URLconf 中有以下 URL:
url(r'^events(/((?P<day>\d{2})(?P<month>\d{2})(?P<year>\d{4}))?/(?P<company_uuid>[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})?)?$',
'events',
name='events'),
和views.py:
@login_required
def events(request, day=None, month=None, year=None, company_uuid=None):
today = now()
if company_uuid:
return HttpResponse(company_uuid)
日、月、年和 company_uuid 是可选参数。所以,我可以导航到
- /事件
- /事件/13062013
- /事件/13062013/28b68080-d336-11e2-b53f-001e681fda9d
但是在模板的某个地方,我想使用反向 url 并构建链接,例如:
<a class="btn" href="{% url 'events' company_uuid=company.uuid %}">Show all company events</a>
显示所有公司活动而不指定日期。
我得到的只是错误:
NoReverseMatch at /companies
Reverse for 'events' with arguments '()' and keyword arguments '{u'company_uuid': u'28b68080-d336-11e2-b53f-001e681fda9d'}' not found.
我该如何解决?