python - Bokeh 数据表未显示在 Flask 中

标签 python flask bokeh

我正在开发一个 Flask Web 应用程序,用于在 DataTable 中显示数据,并通过 Bokeh 构建交互式报告。我的下面的代码显示 Bokeh 数据表不起作用。

from flask import Flask, render_template, request
import pandas as pd
from bokeh.embed import components
from bokeh.models.widgets import DataTable, DateFormatter, TableColumn
from bokeh.models.sources import ColumnDataSource

app = Flask(__name__)

# Load the Iris Data Set
iris_df = pd.read_csv("/data/iris.data", names=["Sepal Length", "Sepal Width", "Petal Length", "Petal Width", "Species"])

@app.route('/ShowIrisDataTable/')
def index():

    cols = [
        TableColumn(field='Sepal Length', title='Sepal Length'),
        TableColumn(field='Sepal Width', title='Sepal Width'), 
        TableColumn(field='Petal Length', title='Petal Length'), 
        TableColumn(field='Petal Width', title='Petal Width'), 
        TableColumn(field='Species', title='Species')
    ]     
    data_table = DataTable(columns=cols, source=ColumnDataSource(iris_df), fit_columns=True)

    script, div = components(data_table)        

    return render_template("iris_index5.html", script=script, div=div)

if __name__ == '__main__':
    app.run(port=5000, debug=True)

我的html文件如下:

<html>
<head>
<link
    href="http://cdn.bokeh.org/bokeh/release/bokeh-0.12.16.min.css"
    rel="stylesheet" type="text/css">
<link
    href="http://cdn.bokeh.org/bokeh/release/bokeh-widgets-0.12.16.min.css"
    rel="stylesheet" type="text/css">

<script src="http://cdn.bokeh.org/bokeh/release/bokeh-0.12.16.min.js"></script>
<script src="http://cdn.bokeh.org/bokeh/release/bokeh-widgets-0.12.16.min.js"></script>

</head>
<body>
<H1>Iris Data Table version 5</H1>

{{ script|safe }}
{{ div|safe }}


</body>
</html>

我的 Web 应用程序仅显示标题“虹膜数据表版本 5”,但不显示 Bokeh 数据表,也没有错误消息。

我不知道哪里出了问题,感谢您的帮助。

最佳答案

您没有包含表的 JS/CSS 文件。它们相对较大,因此被分成自己的文件,这样不使用表的人就不必支付加载资源的成本。下面是一个工作模板。请注意,我还更新了 CDN url 以指向 cdn.bokeh.org。旧位置将无限期地工作,但任何可以使用的人都应该使用新位置。

<html>
<head>

<link
    href="http://cdn.bokeh.org/bokeh/release/bokeh-0.12.16.min.css"
    rel="stylesheet" type="text/css">
<link
    href="http://cdn.bokeh.org/bokeh/release/bokeh-widgets-0.12.16.min.css"
    rel="stylesheet" type="text/css">

<link
    href="http://cdn.bokeh.org/bokeh/release/bokeh-tables-0.12.16.min.css"
    rel="stylesheet" type="text/css">

<script src="http://cdn.bokeh.org/bokeh/release/bokeh-0.12.16.min.js"></script>
<script src="http://cdn.bokeh.org/bokeh/release/bokeh-widgets-0.12.16.min.js"></script>
<script src="http://cdn.bokeh.org/bokeh/release/bokeh-tables-0.12.16.min.js"></script>

</head>
<body>
<H1>Iris Data Table version 5</H1>

{{ script|safe }}
{{ div|safe }}

</body>
</html>

关于python - Bokeh 数据表未显示在 Flask 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58721402/

相关文章:

python - 从数组中删除元素

python - 如何使用 Flask 渲染绘图列表

python - Bokeh 小部件 - 工作复选框组示例

python - 使用 Matplotlib 在 Python 中按线方程绘制二维线

python - 自动更新的打印时间

python - Pandas groupby 多列,多列列表

python - 使用扭曲运行时,Flask 找不到模板目录

python - 在没有 Flask 上下文的情况下渲染 jinja2 模板

javascript - 在 javascript 模型中使用 Bokeh 时出错

python - Bokeh 日期范围 slider