我想通過django(電子郵件,名稱)中的網址傳遞兩個參數它工作正常,當我只是通過電子郵件通過但當我通過名稱通過以及我得到一個錯誤(沒有反向匹配)我的名字包含空格django url no reverse match
URL模式
url(r'^details/(?P<email>[\w.%+-][email protected][A-Za-z0-9.-]+\.[A-Za-z]{2,4})/(?P<name>([\W ]+))/$', details, name="details")
完整的錯誤消息
Reverse for 'password' with arguments '(u'[email protected]', u'tom')' and keyword arguments '{}' not found. 1 pattern(s) tried: ['details/(?P<email>[\\w.%+-][email protected][A-Za-z0-9.-]+\\.[A-Za-z]{2,4})/(?P<name>([\\W ]+))/
$
傳球變量通過URL
{%url 'details' email name %}
的可能的複製[什麼是NoReverseMatch錯誤,以及如何解決呢?(http://stackoverflow.com/questions/38390177/what-is-a-noreversematch-error-and如何做 - 我 - 修復它) – Sayse
請顯示完整的錯誤信息。 – knbk
我已添加完整的錯誤消息 – Percy3872