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


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM