我正在通过 plotly 学习 dash 的基础知识。以下代码运行良好。
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='input', value='Enter something here!', type='text'),
html.Div(id='output')
])
@app.callback(
Output(component_id='output', component_property='children'),
[Input(component_id='input', component_property='value')]
)
def update_value(input_data):
return 'Input: "{}"'.format(input_data)
if __name__ == '__main__':
app.run_server(debug=True)
但是当我运行另一个例子时,我得到了上面代码的输出。
请提出前进的道路。感谢您的宝贵时间。
我尝试从命令提示符运行代码,但仍然无法正常工作。我改了 debug='False' 但还是不行
相关分类