|
請問書上何處有「path(r'hello2/(\w+)/$' , hello2)」? 書附光碟 urls.py 內容: urlpatterns = [ url(r'^admin/', admin.site.urls), url(r'^$', sayhello), url(r'^hello/$', sayhello), url(r'^hello2/(\w+)/$', hello2), url(r'^hello3/(\w+)/$', hello3), url(r'^hello4/(\w+)/$', hello4), ] |