0
雖然重定向到特定的網址,我想通過一個變量(cat
)到一個視圖。使用reverse
這樣的:Django:NoReverseMatch錯誤時,反向一個網址
return HttpResponseRedirect(reverse('show_poll'), args=[cat])
上述重定向會去以下幾種觀點:具有URL
def show_poll(request, cat):
print cat
爲
url(r'^show/(?P<cat>\w+)/$', 'pollsite.views.show_poll', name="show_poll"),
越來越:Reverse for 'show_poll' with arguments '()' and keyword arguments '{}' not found.
我失去了什麼這裏 ?
感謝。真誠地想念那個 – navyad