我是 Python 新手,目前正在开发一个供个人使用的小型应用程序。我正在为我的 gui 使用 tkinter。
我想要做的是创建一个带有标签的顶级弹出窗口,它根据登录尝试的方式更改文本。因此,当运行 tk 的主线程显示带有动态文本的弹出窗口时,我想启动一个线程以尝试最多登录 5 次,并通过设置名为“logindata”的全局变量向主线程报告。
AuctioneerGUI 中的 _login() 方法和 LoginThread 类实际上是唯一重要的事情,您可以忽略其余的事情,但它们可能认为相关。
_login() 方法在登录按钮被按下时被调用。所有这一切都是尝试登录并设置登录数据。与此同时,主线程正在循环,直到它注意到 LoginThread 已经设置了变量,并且当它收集了所有三个变量时,它将进入其余的逻辑(尚未完全实现,但与问题无关)
现在发生的情况是主线程在 LoginThread 启动后停止,只有在它完成后才会继续。即使 LoginThread 应该在单独的线程中运行,因此不会停止主线程。因此,只有在 LoginThread 执行的任务完成后才会显示弹出窗口。我希望弹出窗口只出现并显示为用户提供更新的标签。我该怎么做呢?
我确定问题是线程停止了主线程,因为我使用打印确定了这一点。
我还有一个小问题。popup.destroy() 似乎没有做任何事情。TopLevel 只是停留在那里。
对不起文字墙,并提前感谢您帮助我。我已经花了比我应该尝试几种不同的东西更多的时间,但我没有设法让它发挥作用。
让我知道是否有不清楚的地方,并且不介意有时效率低下或愚蠢的逻辑,我首先想让它至少能正常工作,然后再让它变得漂亮。
-大安
global logindata
logindata = {"counter": -1, "status": -1, "success": -1}
class AuctioneerGUI:
def __init__(self):
root = Tk()
root.title("Path of Exile Auctioneer")
self._setupGUI(root)
self._loggingin = False
root.protocol("WM_DELETE_WINDOW", lambda: root.quit())
root.mainloop()
def _setupGUI(self, root):
frame = Frame(root)
email = StringVar()
pass_ = StringVar()
thread = StringVar()
email.set("email")
pass_.set("password")
thread.set("76300")
email_label = Label(frame, text="email")
self._email_box = Entry(frame, takefocus=True, width=50, textvariable=email)
self._email_box.focus_set()
pass_label = Label(frame, text="password")
self._pass_box = Entry(frame, takefocus=True, show="*", width=50, textvariable=pass_)
thread_label = Label(frame, text="thread id")
self._thread_box = Entry(frame, takefocus=True, width=10, textvariable=thread)
self._login_button = Button(frame, text="login", command=lambda: self._login(root), takefocus=True)
frame.pack()
email_label.pack()
self._email_box.pack()
pass_label.pack()
self._pass_box.pack()
thread_label.pack()
self._thread_box.pack()
self._login_button.pack()
def _login(self, root):
self._login_button.configure(command=None)
email = self._email_box.get()
pass_ = self._pass_box.get()
thread = self._thread_box.get()
# Check email validity
# no whitespaces, 1 @ sign 1 . after the @ sign
try:
thread = int(thread)
except ValueError:
return -1
#invalid thread
if not re.match(r"[^@]+@[^@]+\.[^@]+", email) or not email.find(" ") == -1:
return -1
#invalid mail
self._sm = SessionManager(email, pass_, thread)
self._message = StringVar()
self._message.set("Attempt 1/5.")
popup = Toplevel(root)
popup.title("Logging in...")
message_label = Label(popup, text = self._message.get(), textvariable = self._message)
message_label.pack()
_thread = LoginThread(self._sm)
_thread.start()
loop = True
while loop:
counter = -1
success = -1
status = -1
while counter == -1:
counter = logindata["counter"]
print(counter)
while success == -1:
success = logindata["success"]
print(success)
while status == -1:
status = logindata["status"]
print(status)
if success:
self._message.set("Attempt {}/5. Success.".format(counter))
elif status == 200:
self._message.set("Attempt {}/5. Failed: wrong password.".format(counter))
else:
self._message.set("Attempt {}/5. Failed: connection error. {}".format(counter, status))
updatebar = not success
logindata["counter"] = -1
logindata["status"] = -1
logindata["success"] = -1
if counter == 5:
break
popup.destroy()
self._login_button["command"] = lambda: self._login(root)
self._setup_main_layout(root)
def _setup_main_layout(self, root):
pass
class LoginThread(threading.Thread):
def __init__(self, sessionmanager):
threading.Thread.__init__(self)
self._sm = sessionmanager
def run(self):
success = False
counter = 1
while not success:
if counter > 5:
break
data = self._sm.login()
status = data[1]
success = data[0]
logindata["counter"] = counter
logindata["success"] = success
logindata["status"] = status
counter += 1
print("done")
更新:
经过一些研究,我将通过创建一个继承自标签的 ThreadSafeLabel 来解决该问题,该标签通过管道传输到 Widget 并通过队列进行通信,如下例所示: