Django 版本1.11.29 运行出现 unsupported operand type(s) for /: 'str' and 'str'

辅助工具:Pycharm2020.3.3,

python解释器:python2.7

Django版本:1.11.29

报错代码:unsupported operand type(s) for /: 'str' and 'str'

如图:Django 版本1.11.29 运行出现  unsupported operand type(s) for /: 'str' and 'str'Django 版本1.11.29 运行出现  unsupported operand type(s) for /: 'str' and 'str'

 

 

解决办法:点击最后一个报错行,双击进入,光标会自动停留在出错的代码行数上,出错代码是: 'DIRS': [BASE_DIR / 'templates'],注释掉即可
注意注意注意:把下面的逗号提到'DIRS': [BASE_DIR / 'templates']的后面,不然注释会继续出错
运行截图:Django 版本1.11.29 运行出现  unsupported operand type(s) for /: 'str' and 'str'Django 版本1.11.29 运行出现  unsupported operand type(s) for /: 'str' and 'str'

 

 

出错原因:

这个错误就是说输入的字符类型没有被系统判定为整数类型,查阅资料初步判断可能是版本的问题 ,这个情况尚未在python2.7.15以后遇到过。

下面是python运行出现这种错误:链接上有详细的解决办法(链接转自百度,侵权请联系删除,谢谢!)

https://jingyan.baidu.com/article/a378c960f991ebb3282830dc.html

 

 

 

 

 

上一篇:模板 templates


下一篇:springboot的Web开发进阶