为了账号安全,请及时绑定邮箱和手机立即绑定

Python dash 服务器未更新

Python dash 服务器未更新

MMTTMM 2021-06-06 00:30:21
我正在通过 plotly 学习 dash 的基础知识。以下代码运行良好。import dashfrom dash.dependencies import Input, Outputimport dash_core_components as dccimport dash_html_components as htmlapp = 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' 但还是不行
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 153 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信