我试图使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
谢谢