AttributeError:'builtin_function_or_method'对象没有属性'connect'

时间:2017-12-25 21:56:20

标签: python qt pyqt pyqt4 signals-slots

我正在使用基于PyQt4的PyQt。我正在使用PyCharm 2017.3。我的python版本是3.4。
我正在尝试连接单击鼠标以从QLineEdit捕获内容时获得的信号。

class HelloWorld(QMainWindow, tD_ui.Ui_MainWindow):

    # defining constructor
    def __init__(self):

        QMainWindow.__init__(self)

        self.setupUi(self)
        self.getContent()
        self.putValues()
        self.setWindowTitle("Downloader")
        self.pushButton.mousePressEvent.connect(self.getContent)


因此,当我运行代码时,出现以下错误

Traceback (most recent call last):
  File "C:/Project/Downloader/Implement.py", line 113, in <module>
    helloworld = HelloWorld()
  File "C:/Project/Downloader/Implement.py", line 18, in __init__
    self.pushButton.mousePressEvent.connect(self.getContent)
AttributeError: 'builtin_function_or_method' object has no attribute 'connect' 

P.S-&GT;请尽量避免解决方案中的遗留代码

1 个答案:

答案 0 :(得分:3)

mousePressEvent不是信号,所以你不应该使用connect,你应该使用clicked信号:

self.pushButton.clicked.connect(self.getContent)

<强>加:

在Qt中,因此对于PyQt,有信号和事件,信号被发射并且事件必须被覆盖,在按钮的情况下,被点击的任务是自然的并且在其逻辑中是固有的,所以这个信号已经被创建,但是在QLabel没有该信号的情况下,我们可以使用mousePressEvent事件生成该信号,如下所示:

from PyQt4.QtGui import *
from PyQt4.QtCore import *

class Label(QLabel):
    clicked = pyqtSignal()
    def mousePressEvent(self, event):
        self.clicked.emit()

if __name__ == "__main__":
    import sys
    app = QApplication(sys.argv)
    w = Label("click me")
    w.clicked.connect(lambda: print("clicked"))
    w.show()
    sys.exit(app.exec_())