按下按钮打印 LineEdit 文本

Print LineEdit text on a button press

如何更改以下代码,使其在按下 'OK' 按钮时打印行编辑小部件中写入的内容?当前版本returns“'Example'对象没有属性'textbox'”错误。

import sys
from PyQt5.QtWidgets import QApplication, QWidget,QPushButton,QLineEdit, QHBoxLayout, QLabel, QVBoxLayout
from PyQt5.QtGui import QIcon


class Example(QWidget):

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

        self.initUI()


    def initUI(self):

        label = QLabel('Keyword') 
        button = QPushButton('OK')
        textbox = QLineEdit()
        hbox = QHBoxLayout()
        hbox.addWidget(label)
        hbox.addWidget(textbox)
        hbox.addWidget(button)

        vbox = QVBoxLayout()
        vbox.addLayout(hbox)
        vbox.addStretch(1)

        button.clicked.connect(self.button_clicked)

        self.setLayout(vbox)   

        self.setGeometry(300, 300, 300, 220)
        self.setWindowTitle('Icon')
        self.setWindowIcon(QIcon('web.png')) 
        self.show()

    def button_clicked(self):
        print(self.textbox.text())

if __name__ == '__main__':

    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

`

如果您希望可以在 class 的所有部分访问变量,就像您的情况是 button_clicked 方法一样,您必须使它成为 class 的成员创建它时必须使用 self。

class Example(QWidget):
    [...]

    def initUI(self):    
        label = QLabel('Keyword') 
        button = QPushButton('OK')
        self.textbox = QLineEdit() # change this line
        hbox = QHBoxLayout()
        hbox.addWidget(label)
        hbox.addWidget(self.textbox) # change this line