我有一個現有的Flask應用程序,並且我想要一條路線到另一個應用程序。更具體地說,第二個應用程序是一個Plotly Dash應用程序。我如何在現有的Flask應用程序中運行我的Dash應用程序?在Flask應用程序中運行Dash應用程序
@app.route('/plotly_dashboard')
def render_dashboard():
# go to dash app
我也嘗試添加到短跑實例的路線,因爲它是一個瓶的應用程序,但我得到的錯誤:
AttributeError: 'Dash' object has no attribute 'route'