1

我正在尝试连接QFileSystemModel.dataChanged信号,但到目前为止还没有运气。下面的代码产生了这个错误:

类型错误:字节或 ASCII 字符串不应为“列表”

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 中连接这个信号?

4

1 回答 1

4

如果没有任何重载,则无需显式选择信号。所以连接信号的正确方法是这样的:

    self.model.dataChanged.connect(self.dataChanged)

但无论如何,当您确实需要选择签名时,您必须传入表示类型的类型对象或字符串。在您的特定情况下,必须使用字符串,因为第三个参数没有相应的类型对​​象。所以上述信号连接的显式版本将是:

    self.model.dataChanged[QtCore.QModelIndex, QtCore.QModelIndex, "QVector<int>"].connect(self.dataChanged)
于 2016-08-05T00:38:56.807 回答