gpt4 book ai didi

python - AppJar 线程允许 GUI 更新

转载 作者:太空宇宙 更新时间:2023-11-03 21:38:31 25 4
gpt4 key购买 nike

过去几个小时我一直在研究AppJar文档,但我似乎真的不知道如何在数据处理过程中更新GUI。我将 4 个主要函数拆分为不同的线程,并在线程中将更新函数添加为 .queuefunction,但 GUI 仍然挂起,直到一切完成。

这是我写的更新函数:

label_status = ["Ready"]


def update_label():
app.setLabel("status_label", label_status[-1])

然后我将进程分解为 4 个线程,但与之前相比没有任何改变。所以我猜我在这里错过了一些非常明显的东西,但我找不到它。

def press(button):
""" Process a button press

Args:
button: The name of the button. Either Process of Quit
"""
if button == "Process":
global label_status
global output_directory
global filename_out
src_file = app.getEntry("input_file")
output_directory = app.getEntry("output_directory")
filename_out = app.getEntry("output_name")
errors, error_msg = validate_inputs(src_file, output_directory, filename_out)
if errors:
label_status.append("Error")
update_label()
app.errorBox("Error", "\n".join(error_msg), parent=None)
return label_status
else:
#Create single xlsx doc from data
trimmed_input = src_file[:-4]
app.thread(create_xlsx_file(trimmed_input))

# add graphs to excel file
app.thread(add_graphs())

#clean temporary files
app.thread(clean_files())

#move output.xlsx to location chosen with filename chosen
app.thread(move_output())

我尝试通过以下方式更新线程内的 GUI:

def clean_files():
label_status.append("Cleaning temporary files")
app.queueFunction(update_label())
file_path = os.path.join("csv_output/" + "temp*")
del_files = glob.glob(file_path)
for files in del_files:
os.remove(files)

由于我要附加到列表,因此我可以看到所有状态都已添加,但仅向用户显示第一个和最后一个状态。我在这里缺少什么?

最佳答案

看来您对 app.thread()app.queueFunction() 的所有调用都错误。

我认为你应该只传递函数的名称。但是,因为您在函数名称后面加上了括号,所以实际上是在传递函数的结果。

尝试在函数名称后不包含括号,例如。 app.queueFunction(update_label)

关于python - AppJar 线程允许 GUI 更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53085433/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com