'set' object has no attribute 'items'
时间: 2023-11-12 13:09:33 浏览: 99
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
出现 'set' object has no attribute 'items' 报错通常是因为代码中的 "headers" 出现问题。这个错误通常是由于将一个集合(set)对象传递给了需要字典(dict)对象的函数或方法,因为集合对象没有 "items" 属性,所以会报错。解决这个问题的方法是将集合对象转换为字典对象,或者直接使用字典对象作为参数传递给函数或方法。另外,还需要注意在使用 xpath 定位时,要注意 header 的设置,可以参考引用中的注意事项。
阅读全文