我刚刚将Python Bokeh升级到0.12.4我得到错误JSON对象有错误的类型字符串

时间:2018-03-10 17:28:00

标签: python-3.x bokeh

我刚刚将Python Bokeh升级到0.12.4我得到错误JSON对象有错误的类型字符串。我没有任何本地静态CDN库。有一些信息here,但令人困惑。有没有人对如何修复有简单的答案?

注意:我的散景在Jupyter中运行良好。这里的Flask网页嵌入案例失败了:

script, div = components(plot) return render_template('graph.html',
script=script, div=div)

graph.html模板如下所示:

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

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

{{ script |safe }}

1 个答案:

答案 0 :(得分:8)

我的django模板中有同样的错误,从bokeh 0.12.6升级到散景0.12.14,所以我添加了相同的散景静态要求

c.execute('''UPDATE stats SET correct = ?, total = ? where username = ?;''',(new_correct, new_total, username))