这只是我剧本的一部分。当file.txt中的数据更改时,我无法重新加载脚本(不停止它)。
class StockListModel(QtCore.QAbstractListModel):
def __init__(self, stockdata = [], parent = None):
QtCore.QAbstractListModel.__init__(self, parent)
self.stockdata = stockdata
self.file_check = QtCore.QFileSystemWatcher(['/home/user/Desktop/file.txt'])
self.file_check.fileChanged.connect(self.resetItems)
def getItems(self):
return stockdata
@QtCore.pyqtSlot(str)
def resetItems(self, path):
self.beginResetModel()
self.stockdata = self.stockdata #without this and next line I have the same
self.endResetModel() #error
if __name__ == '__main__':
app = QtGui.QApplication(sys.argv)
app.setStyle("plastique")
tableView = QtGui.QTableView()
tableView.show()
a = os.popen("cat /home/user/Desktop/file.txt")
a = a.read()
time_variable = QtCore.QString("%s"%a)
model = StockListModel([time_variable])
tableView.setModel(model)
sys.exit(app.exec_())
当我运行此脚本并更新文件时,会得到一个错误:
AttributeError:“QString”对象没有属性“beginResetModel”
我应该更改什么来刷新数据?
最佳答案
您得到错误是因为fileChanged
正在接收您的QFileSystemWatcher
emits a string的resetItems()
信号,该信号期望StockListModel
的实例。未能传递self
引用,因为file_check
已定义为静态且未绑定到特定实例。
尝试将file_check
作为实例变量移动到构造函数中,并修改resetItems()
以接受fileChanged
发出的字符串参数。
编辑:为清晰起见添加了代码
施工单位:
def __init__(self, stockdata = [], parent = None):
QtCore.QAbstractListModel.__init__(self, parent)
self.stockdata = stockdata
self.file_check = QtCore.QFileSystemWatcher(['/home/user/Desktop/file.txt'])
self.file_check.fileChanged.connect(self.resetItems)
重置项目:
@QtCore.pyqtSlot(str)
def resetItems(self, path):
self.beginResetModel()
...