如何从 class 的初始化函数 python 中获取值

how to get a value out of a class's init function python

我正在使用 tkinter 的基于 class 的结构,我需要获取文本输入的值。我该怎么做?

相关代码如下:

#GUI
class PseudostreamWidget(tk.Frame):

    def __init__(self, master=None, **kw):
        tk.Frame.__init__(self, master, **kw)
        self.targetIP = tk.Entry(self.Ipconfig)
        self.targetIP.configure(background='black', font='{Lato} 12 {}', foreground='white', highlightbackground='black')
        self.targetIP.configure(highlightcolor='black', justify='left', relief='raised')
        _text_ = '''Friend's Public IP Here'''
        self.targetIP.delete('0', 'end')
        self.targetIP.insert('0', _text_)
        self.targetIP.grid(column='1', row='0')
        #
        #
        #
        target_ip = self.targetIP
        #
        # 

如何让它在 class 之外打印 target_ip

if __name__ == '__main__':
    root = tk.Tk()  
    widget = PseudostreamWidget(root)
    widget.pack(expand=True, fill='both')
    root.mainloop()

print(target_ip)

试试这个:

import tkinter as tk


class PseudostreamWidget(tk.Frame):
    def __init__(self, master=None, callback=None, **kwargs):
        super().__init__(master, **kwargs)
        self.targetIP = tk.Entry(self, fg="white", justify="left",
                                 relief="raised", highlightbackground="black",
                                 highlightcolor="black", bg="black",
                                 insertbackground="white", font=("Lato", 12))
        # self.targetIP.delete(0, "end") # No need for this
        self.targetIP.insert(0, "Friend's Public IP Here")
        self.targetIP.grid(column=1, row=0)
        self.targetIP.bind("<Return>", callback)


def submit_data(event=None):
    print("You typed in:", widget.targetIP.get())

root = tk.Tk()
widget = PseudostreamWidget(root, callback=submit_data)
widget.pack()
root.mainloop()

要使用它,只需在条目中写一些东西,然后按键盘上的 Enter 键。

它传入一个函数 (submit_data) 并绑定到它。