我有一个bokeh应用程序,其中包含多个情节和小部件,可以使用bokeh服务器运行它们。我希望能够将这些图“导入”到Flask应用程序中,并使用模板放置到图上。我一直在玩示例here,但是我不知道如何以可以控制单个图的方式进行修改。
如果我们看
@app.route('/', methods=['GET'])
def bkapp_page():
script = server_document('http://localhost:5006/bkapp')
return render_template("embed.html", script=script, template="Flask")
通过指定embed.html
,似乎整个Bokeh应用程序都已发送到script=script
模板。如何运行服务器,但是访问模板中的特定图?
换句话说,我如何才能在仅提供script
的html模板中访问绘图组件?