使用 PyQt5 轻松实现多线程,用于更新 QTextBrowser 内容
Posted
技术标签:
【中文标题】使用 PyQt5 轻松实现多线程,用于更新 QTextBrowser 内容【英文标题】:Easy Multi-threading with PyQt5, for updating QTextBrowser contents 【发布时间】:2019-04-12 17:57:27 【问题描述】:我在网上发现一些东西表明 PyQt5 小部件不是线程安全的。
其他 *** 答案建议创建一个只适合他们问题的类。我尝试在 Python 3 中使用 _thread
模块,该模块适用于除 PyQt 之外的所有内容。
app = QApplication([])
Ui_MainWindow, QtBaseClass = uic.loadUiType("UI/action_tab.ui") #specify the location of your .ui file
class MyApp(QMainWindow):
def __init__(self):
super(MyApp, self).__init__()
self.ui = Ui_MainWindow()
self.ui.setupUi(self)
self.threadPool = QThreadPool()
self.ui.queryBox.returnPressed.connect(self.load_response)
def start_loader(self):
self.loading_animate = QMovie('IMAGES/GIFS/load_resp.gif')
self.loading_animate.setScaledSize(QSize(400, 300))
self.ui.loader.setMovie(self.loading_animate)
self.loading_animate.setSpeed(200)
self.ui.loader.show()
self.loading_animate.start()
def stop_loader(self):
self.ui.loader.hide()
self.loading_animate.stop()
def get_response(self):
plain_text, speech = get_Wresponse(self.ui.queryBox.displayText())
self.stop_loader()
self.ui.textDisplay.setText(plain_text)
if speech == '':
say("Here you GO!")
else:
say(speech)
def load_response(self):
self.start_loader()
_thread.start_new_thread(self.get_response, ())
#self.get_response()
if __name__ == '__main__':
window = MyApp()
window.setWindowFlags(Qt.FramelessWindowHint)
window.show()
sys.exit(app.exec())
以上代码错误,
QObject: Cannot create children for a parent that is in a different thread.
(Parent is QTextDocument(0x19fe090b8c0), parent's thread is QThread(0x19fde197fb0), current thread is QThread(0x19fe3a0a5f0)
你觉得你能救我吗? 请做! 提前致谢!!
【问题讨论】:
【参考方案1】:您不必从外部线程更新 GUI。有几个选项,如信号、QMetaObject::invokeMethod(...)
、QEvent 和 QTimer::singleShot(0, ...)
with pyqtSlot。
使用最后一种方法解决方法如下:
from functools import partial
from PyQt5.QtCore import pyqtSlot
class MyApp(QMainWindow):
# ...
@pyqtSlot()
def stop_loader(self):
self.ui.loader.hide()
self.loading_animate.stop()
def get_response(self, text):
plain_text, speech = get_Wresponse(text)
QtCore.QTimer.singleShot(0, self.stop_loader)
wrapper = partial(self.ui.textDisplay.setText, plain_text)
QtCore.QTimer.singleShot(0, wrapper)
if speech == '':
say("Here you GO!")
else:
say(speech)
def load_response(self):
self.start_loader()
text = self.ui.queryBox.displayText()
_thread.start_new_thread(self.get_response, (text,))
【讨论】:
以上是关于使用 PyQt5 轻松实现多线程,用于更新 QTextBrowser 内容的主要内容,如果未能解决你的问题,请参考以下文章
Python3.5+PyQt5多线程+itchat实现微信防撤回桌面版代码