TypeError: view must be a callable or a list/tuple in the case of include() 的解决方法:
在django 1.10中,你需要通过import来进行调用 ,所以应该是
form blog.views import hello
urlpatterns = [
...
url(r'helloworld',hello)
]
在django 1.10中,你需要通过import来进行调用 ,所以应该是
form blog.views import hello
urlpatterns = [
...
url(r'helloworld',hello)
]
2016-09-30
最新回答 / Corbie亚东
(?P<name>pattern), name 可以理解为所要传递的参数的名称,pattern代表所要匹配的模式。例如url(r'^articles/(?P<year>[0-9]{4})/(?P<month>[0-9]{2})/$', views.month_archive), 那么year,month将会对应views传递过来的year,month的值,而后面紧跟的则代表正则表达匹配的模式。
2016-09-25