在urls.py:Django的變量:申報網址
(r'^bbb/id(?P<user_id>[0-9]+)/$', 'django.views.generic.simple.direct_to_template,
{'template': 'some.html', 'extra_context': {'user_id': user_id}}),
在some.html:{{ user_id }}
但有一個錯誤:name 'user_id' is not defined (in urls.py)
那麼,如何聲明變量urls.py並直接發送到'some.html'?
謝謝。
非常感謝! –