线程中的QWebView - Pyside

时间:2016-09-16 14:00:32

标签: multithreading pyqt qwebview

我想知道是否有人知道如何在每30秒内在Pyside中的Pyside中重新加载QWebView作为示例。现在,我的代码在我的线程中作为守护进程运行:

while(1):
    # Every 30 seconds
    for in in range(0,30):
        time.sleep(0.01)

    # Reload the page
     self.webView.reload()

问题是此错误消息,我不知道如何解决它:

Qobject cannot creat thread network psyide
parent is qnetworkaccessmanager parent's thread is qthread

如果有人有想法,我就会卡住

0 个答案:

没有答案