Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下の URL パターンを設計する方法:
http://127.0.0.1:8000/add/id/番号
url(r'^add/$)
number - 1 から 5 の数字 (1,2,3,4,5)
もしかして:
url( r'^add/(?P<id>\d+)/(?P<number>\d{1,5})/', 'add', name="add" ),
このように、ビューがパラメーターを受け入れる場合number(および数値が 1 桁の場合):
number
url(r'^add/id/(?P<number>[0-5])$)