首页 > 代码库 > django 运行报错view must be a callable or a list/tuple in the case of include()
django 运行报错view must be a callable or a list/tuple in the case of include()
网上找了相关资料发现
django 1.10之后不在支持URL用字符串表示了
http://stackoverflow.com/questions/38744285/django-urls-error-view-must-be-a-callable-or-a-list-tuple-in-the-case-of-includ
那我们换种写法,
from myindex.bb import hi
import myindex
urlpatterns = [
url(r‘^admin/‘, admin.site.urls),
url(r‘^index‘, hi),
]
测试通过,OK
django 运行报错view must be a callable or a list/tuple in the case of include()
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。