【发布时间】:2020-03-19 18:12:44
【问题描述】:
是否有可能在 Dash (Python) 中为重新加载页面的按钮编写回调函数(例如浏览器中的更新按钮?
app.layout =html.Div([
html.Button(id="refresh"),
])
@app.callback(Output('???', '???'),
[Input('refresh', 'n_clicks')])
def refresh(n):
?
return
?
【问题讨论】:
标签: python plotly-dash