标签:convert code datetime bsp 日期 publish python 错误 消失
表字段类型问题
publishDate=models.DateField()
改为
publishDate=models.DateTimeField()
DateField是日期项,没法精确到时分秒。所以这里出现溢出错误。将 DateField改为 DateTimeField,重新初始化数据库以后问题就消失了
Python int too large to convert to C long
标签:convert code datetime bsp 日期 publish python 错误 消失
原文地址:https://www.cnblogs.com/aizhinong/p/12368145.html