如何通过实时更新禁用刷新标题?
How to disable refreshing title with live updates?
以下结果来自 dcc.Interval
;如何摆脱“正在更新...”并将其修复为“标题”?
您可以通过 Dash
对象的 update_title
参数自定义它。要完全禁用它,
app = dash.Dash(__name__, update_title=None)
详情见the documentation。请注意,该功能是在 Dash v1.14.0 中引入的。
以下结果来自 dcc.Interval
;如何摆脱“正在更新...”并将其修复为“标题”?
您可以通过 Dash
对象的 update_title
参数自定义它。要完全禁用它,
app = dash.Dash(__name__, update_title=None)
详情见the documentation。请注意,该功能是在 Dash v1.14.0 中引入的。