gpt4 book ai didi

python - Dash Python App 按钮用于操作并刷新页面

转载 作者:行者123 更新时间:2023-12-04 04:11:05 32 4
gpt4 key购买 nike

需要在 Dash App 中有一个回调函数来执行一些操作然后刷新页面,只有使用 HTML A 标签才能实现页面重新加载。

html.A(html.Button('Refresh Data'),href='/')

必需的:
app.layout = html.Div([html.Button(id="refresh")])

@app.callback(Output('???', '???'),
[Input('refresh', 'n_clicks')])
def refresh(n):
## Perform some action ##
## call python function API ##
## Finally Refresh the Page ##
?
return ?

最佳答案

我想这是正确的方法:
将此添加到您的布局:

dcc.Location(id='url', refresh=True),
打回来:
@app.callback(
Output("url", "href"),
Input("App-logo", "n_clicks"),
prevent_initial_call=True,
)
def reload_data(_):
return "/"

关于python - Dash Python App 按钮用于操作并刷新页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61716381/

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