我正在更新一些代码以使用Dash和plotly。图形的主要代码在一个类中定义。我用Dash控件替换了一些Bokeh小部件,并最终得到了如下所示的回调:
class MakeStuff:
def __init__(self, ..., **optional):
...
self.app = dash.Dash(...)
...
@self.app.callback(
dash.dependencies.Output('indicator-graphic', 'figure'),
[dash.dependencies.Input('start-time-slider', 'value'),
dash.dependencies.Input('graph-width-slider', 'value')]
)
def update_graphs(self,range_start,graph_width):
print(...)
我正在跟踪Dash website中的一些示例。我能够运行示例,包括回调。在我的代码中,没有装饰器,代码运行没有错误,生成了我期望的图形和控件。 (当然,代码是不完整的,但是没有错误。)当包含装饰器时,会出现以下错误:
NameError:名称'self'未定义
我这样累了,首先,只是模仿代码示例:
class MakeStuff:
def __init__(self, ..., **optional):
...
app = dash.Dash(...)
...
@app.callback(
dash.dependencies.Output('indicator-graphic', 'figure'),
[dash.dependencies.Input('start-time-slider', 'value'),
dash.dependencies.Input('graph-width-slider', 'value')]
)
def update_graphs(self,range_start,graph_width):
print(...)
当然,变量“ app”仅在 init 函数的范围内是已知的,因此,它不起作用并给出类似的错误也就不足为奇了:
NameError:名称“ app”未定义
是否有一种直接的方法来设置此装饰器以使其工作,同时仍将我的代码保留在类定义中?我想装饰器会进行一些预处理,但是我对它的理解还不够,无法提出解决方案。
答案 0 :(得分:0)
您可以不以装饰器的形式调用回调函数,如this answer所示。这应该在您的init函数中起作用:
class MakeStuff:
def __init__(self, ..., **optional):
...
self.app = dash.Dash(...)
app.callback(dash.dependencies.Output('indicator-graphic', 'figure'),
[dash.dependencies.Input('start-time-slider', 'value'),
dash.dependencies.Input('graph-width-slider', 'value')])(self.update_graphs)
...
def update_graphs(self,range_start,graph_width):
print(...)
我之前从未尝试过使用类实例,但是没有理由不起作用。
答案 1 :(得分:0)
ned2 提供了一个解决方案 here,他使用以下结构在类定义中设置装饰器。
class BaseBlock:
def __init__(self, app=None):
self.app = app
if self.app is not None and hasattr(self, 'callbacks'):
self.callbacks(self.app)
class MyBlock(BaseBlock):
layout = html.Div('layout for this "block".')
def callbacks(self, app):
@app.callback(Output('foo', 'figure'), [Input('bar')])
def do_things(bar):
return SOME_DATA
@app.callback(Output('baz', 'figure'), [Input('boop')])
def do_things(boop):
return OTHER_DATA
# creating a new MyBlock will register all callbacks
block = MyBlock(app=app)
# now insert this component into the app's layout
app.layout['slot'] = block.layout