在Django中,模板裏面,我做Django的網址模板標籤不工作
{% url 'Customer.views.edit_customer' 1 %}
,我得到一個NoReverseMatch
例外。但是,在模板渲染之前的行我做:
print reverse('Customer.views.edit_customer', args=(1,))
它打印預期的URL。我知道我總是能夠通過反向的結果,但我想知道發生了什麼。
URL模式是:
url(r'^customer/edit/(\d+)$', edit_customer),
是否有這樣做模板的反向調用等效的方法嗎?
你的網址模式是什麼樣的?不知道它的相關,但只是想檢查 – jdi