django中urls,path方法的name属性报错情况集合

**

  • 情况1

**

TypeError at /
‘str’ object is not a mapping

Request Method: GET
Request URL: http://127.0.0.1:8000/
Django Version: 2.2.1
Exception Type: TypeError
Exception Value:
‘str’ object is not a mapping
Exception Location: C:\Python35\lib\site-packages\django\urls\resolvers.py in _populate, line 476
Python Executable: C:\Python35\python.exe
Python Version: 3.5.4

问题原因:path(),name= ‘url_name’ 没有写name,直接给了一个字符串,所以报错str对象没有匹配----无人认领啊。。。。。。。。。。。。。

你可能感兴趣的:(django)