[bug] TypeError : unsupported operand type(s) for += : 'NoneType' and 'int'

原因

Flask购物网站中,每点击货物一次,数据库中货物的浏览次数+1,默认浏览次数为NULL,故无法完成运算

解决

将数据库中相应字段默认值设为0,注意要先断开数据库连接

原文地址:https://www.cnblogs.com/cxc1357/p/13709340.html