Python 有没有办法在Dash中重新启动回调函数?

Python 有没有办法在Dash中重新启动回调函数?,python,plotly-dash,Python,Plotly Dash,想知道如果函数中满足某些条件,是否有任何方法可以让我的一个Dash update回调重新开始。也许这是我可以提出的某种例外,类似于dash.exceptions.PreventUpdate 例如: @app.callback(Output(...),[Input(...)]) def update_fxn(....): if x: return [a, b, c] if y: #restart this callback somehow 如果你们有什么想法,

想知道如果函数中满足某些条件,是否有任何方法可以让我的一个Dash update回调重新开始。也许这是我可以提出的某种例外,类似于dash.exceptions.PreventUpdate

例如:

@app.callback(Output(...),[Input(...)])
def update_fxn(....):
   if x:
      return [a, b, c]
   if y:
      #restart this callback somehow

如果你们有什么想法,请告诉我。谢谢

你能详细说明一下标准吗?什么影响它?你能举个例子吗?你能详细说明一下标准吗?什么影响它?你能举个例子吗?