Bokeh:CustomJS错误-缺少BokehJS库

问题描述 投票:0回答:2

我试图使TextAreaInput在每次文本更新时自动向下滚动,当我尝试使用CustomJS时,我在浏览器生成的脚本上发现了此错误:

Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing

以及浏览器控制台上的此错误:

TypeError: Cannot read property 'connect' of undefined

[bokeh] Failed to repull session TypeError: Cannot read property 'connect' of undefined

尽管,我将javascript代码简化为“没有”,但出现了相同的错误。这是代码片段

from bokeh.models.widgets import TextAreaInput
from bokeh.models import CustomJS

class projectdata:
    def __init__(self, doc):
        self.textarea = TextAreaInput(value="XER file contents will show here!", rows = 10, name="textarea", css_classes=["mytext"])
        callback = CustomJS(args=dict(text=self.textarea),code="""""")
        self.textarea.js_on_change('scroll', callback)

Python:3.7.3,散景:1.3.4,浏览器:Chrome

谢谢

python bokeh bokehjs
2个回答
0
投票

经过试验,我发现错误原因是该行中的“ scroll”


-1
投票

第一个错误是告诉您您没有https://pypi.org/project/bokeh/

© www.soinside.com 2019 - 2024. All rights reserved.