赞
踩
- with HmiDb() as db:
- test = db.query(Csdn).filter_by(url=url).first()
- if read_num > url_count:
- print('达到要求删除')
- if test:
- db.delete(test)
- else:
- if test:
- test.name = str(read_title)
- test.csdn_count = read_num
如果将其中的
test.name = str(read_title)
改为
test.name = read_title
就会出现该错误:'int' object is not iterable
原因 name的表结构定义 是字符串
name = Column(String(100))
而read_title并不是字符串
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。