PyQt5:使用插槽/信号时self为NoneType

时间:2014-01-27 23:23:40

标签: python pyqt pyqt5

尝试在自定义类上使用插槽/信号时遇到了一些问题。

该课程如下:

import sys
from PyQt5 import QtCore
from PyQt5.QtGui import QGuiApplication, QPixmap

class Screenshot(QtCore.QObject):
    newScreenshotTaken = QtCore.pyqtSignal(QPixmap)
    timer = QtCore.QTimer()
    captureInterval = 5 * 60

    def __init__(self):
        super(Screenshot, self).__init__()

    def startCapture(self):
        self.capture()

    def stopCapture(self):
        self.timer.stop()

    def on_userStartedCapture(self):
        self.startCapture()

    def on_userStoppedCapture(self):
        self.stopCapture()

    def capture(self):
        print("capture!")

错误发生在on_userStartedCapture(self):

  File "/Volumes/HD2/test/screenshot.py", line 23, in on_userStartedCapture
    self.startCapture()
AttributeError: 'NoneType' object has no attribute 'startCapture'

从另一个类调用Emit:

self.userStartedCapture.emit()

连接在main.py上完成:

screenshot = Screenshot()
mainWindow = MainWindow()

mainWindow.userStartedCapture.connect(screenshot.on_userStartedCapture)

奇怪的是,self适用于我的应用程序中的所有插槽/信号。但我无法找出为什么这个特定的失败。

关于可能发生的事情的任何想法?

1 个答案:

答案 0 :(得分:1)

引发错误是因为信号发送时selfNone。也就是说,信号所连接的Screenshot实例已被删除(或正在被删除)。