python PyQt5 多线程报错 QObject: Cannot create children for a parent that is in a different thread.

2021/7/3 20:53:55

本文主要是介绍python PyQt5 多线程报错 QObject: Cannot create children for a parent that is in a different thread.,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

出错详情:

QObject: Cannot create children for a parent that is in a different thread.
(Parent is QNetworkAccessManager(0x2db2d8f1880), parent’s thread is QThread(0x2db2cb760a0), current thread is QThread(0x2db2da2a4e0)

原因:主线程UI界面的成员传入到了非主线程中,这导致了跨线程。

python3 解决的方法:

1.通过emit() 函数发射信号来解决。

2.通过信号与槽分解决



这篇关于python PyQt5 多线程报错 QObject: Cannot create children for a parent that is in a different thread.的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程