我刚刚开始使用破折号。以here为例。我想转换下面的破折号应用程序
import dash
from dash.dependencies import Input, Output
import dash_core_components as dcc
import dash_html_components as html
app = dash.Dash()
app.layout = html.Div([
dcc.Input(id='my-id', value='initial value', type="text"),
html.Div(id='my-div')
])
@app.callback(
Output(component_id='my-div', component_property='children'),
[Input(component_id='my-id', component_property='value')]
)
def update_output_div(input_value):
return 'You\'ve entered "{}"'.format(input_value)
if __name__ == '__main__':
app.run_server()
要在用户按下按钮时更新,而不是在输入字段的值更改时更新。我该如何做到这一点?
答案 0 :(得分:2)
这是与post类似的问题。最新dash_html_components
中的按钮有一个点击事件,但它似乎还没有完整记录。创建者chriddyp stated Event
对象可能无法面向未来,但State
应该是。{/ p>
使用State
之类的:
@app.callback(
Output('output', 'children'),
[Input('button-2', 'n_clicks')],
state=[State('input-1', 'value'),
State('input-2', 'value'),
State('slider-1', 'value')])
您可以使用值作为输入,如果它们发生更改则不会启动回调。如果Input('button', 'n_clicks')
更新,则仅会触发回调。
因此,对于您的示例,我添加了一个按钮并将状态对象提供给您现有的html.Input值:
import dash
from dash.dependencies import Input, Output, State
import dash_core_components as dcc
import dash_html_components as html
app = dash.Dash()
app.layout = html.Div([
dcc.Input(id='my-id', value='initial value', type="text"),
html.Button('Click Me', id='button'),
html.Div(id='my-div')
])
@app.callback(
Output(component_id='my-div', component_property='children'),
[Input('button', 'n_clicks')],
state=[State(component_id='my-id', component_property='value')]
)
def update_output_div(n_clicks, input_value):
return 'You\'ve entered "{}" and clicked {} times'.format(input_value, n_clicks)
if __name__ == '__main__':
app.run_server()