AttributeError: 'QGraphicsTextItem' object has no attribute 'setText'
时间: 2023-11-15 11:07:14 浏览: 171
python报错: list object has no attribute shape的解决
这个错误提示是在使用QGraphicsTextItem对象时出现的,它告诉我们这个对象没有setText方法。这个错误通常是因为我们错误地将一个列表或其他类型的对象赋值给了QGraphicsTextItem对象,而不是字符串类型。因为只有字符串类型才有setText方法。要解决这个问题,我们需要确保将正确的数据类型赋值给QGraphicsTextItem对象。
阅读全文