学习django遇到的一些问题

夜魅 / 2023-07-19 / 原文

python版本号:3.10

django版本号:4.2.1

官方文档“编写你的第一个Django应用”

1.学习后台管理时报错,

TypeError at /admin/

'set' object is not reversible
Request Method: GET
Request URL: http://127.0.0.1:8000/admin/
Django Version: 4.2.1
Exception Type: TypeError
Exception Value:
'set' object is not reversible
Exception Location: D:\mniconda\lib\site-packages\django\urls\resolvers.py, line 543, in _populate
Raised during: django.contrib.admin.sites.index

解决方法:将应用中urls.py中的路由表的{}改成[]