TypeError: items(self, QMimeData): not enough arguments
时间: 2024-04-03 20:34:53 浏览: 83
Vue 报错TypeError: this.$set is not a function 的解决方法
这个错误提示表明在调用 items() 方法时参数不足。在 PyQt 中,QMimeData 类的 items() 方法需要传入一个参数,即数据类型(MIME type)。你需要检查代码中调用 items() 方法的地方,看看是否有漏传参数的情况。你还可以参考 PyQt 的官方文档,了解 items() 方法的用法和参数。
阅读全文