TypeError at /admin/ 'set' object is not reversible

后端 未结 3 1966
鱼传尺愫
鱼传尺愫 2021-01-17 06:36

Environment:

Request Method: GET Request URL: http://127.0.0.1:8000/admin/

Django Version: 1.10.6 Python Version: 3.6.0 Installed Applications: [\'music.apps

相关标签:
3条回答
  • 2021-01-17 07:07

    You have to change the {} to [] in your urls.py where the urlpatterns variable is

    0 讨论(0)
  • 2021-01-17 07:18

    in your urls change {} brackets to [] these

    0 讨论(0)
  • 2021-01-17 07:29

    Please change {} to [] in your urls.py file. e.g.urlpatterns=[path('', views.itemlist, name="itemlist"),]

    0 讨论(0)
提交回复
热议问题