我试图连接QFileSystemModel.dataChanged
信号,但到目前为止没有运气。下面的代码产生了这个错误:
TypeError:字节或ASCII字符串,不是' list'
import sys
from PyQt5 import QtGui, QtWidgets, QtCore
from PyQt5.QtWidgets import QFileSystemModel, QTreeView
from PyQt5.QtCore import QDir
class DirectoryTreeWidget(QTreeView):
def __init__(self, path=QDir.currentPath(), *args, **kwargs):
super(DirectoryTreeWidget, self).__init__(*args, **kwargs)
self.model = QFileSystemModel()
self.model.dataChanged[QtCore.QModelIndex,QtCore.QModelIndex,[]].connect(self.dataChanged)
def dataChanged(self, topLeft, bottomRight, roles):
print('dataChanged', topLeft, bottomRight, roles)
def main():
app = QtWidgets.QApplication(sys.argv)
ex = DirectoryTreeWidget()
ex.set_extensions(["*.txt"])
sys.exit(app.exec_())
if __name__ == "__main__":
main()
如何在PyQt5中连接此信号?
答案 0 :(得分:2)
如果没有任何重载,则无需显式选择信号。所以连接信号的正确方法是这样的:
self.model.dataChanged.connect(self.dataChanged)
但无论如何,当执行需要选择签名时,您必须传入类型对象或表示类型的字符串。在您的特定情况下,必须使用字符串 ,因为第三个参数没有相应的类型对象。所以上述信号连接的显式版本是:
self.model.dataChanged[QtCore.QModelIndex, QtCore.QModelIndex, "QVector<int>"].connect(self.dataChanged)