gpt4 book ai didi

callback - Bokeh 按钮回调 : unexpected attribute 'callback' to Button, 中出现错误,类似的属性是 js_event_callbacks

转载 作者:行者123 更新时间:2023-12-01 23:57:18 24 4
gpt4 key购买 nike

我在 Bokeh 按钮回调中遇到错误:unexpected attribute 'callback' to Button, similar attributes are js_event_callbacks。我从工作示例中复制:is there a way to save bokeh data table content .错误代码如下:

savebutton.callback = CustomJS(
args=dict(source_data=s1),
code="""
var inds = source_data.selected.indices;
var data = source_data.data;
var out = "x, y\\n";
for (i = 0; i < inds.length; i++) {
out += data['x'][inds[i]] + "," + data['y'][inds[i]] + "\\n";
}
var file = new Blob([out], {type: 'text/plain'});
var elem = window.document.createElement('a');
elem.href = window.URL.createObjectURL(file);
elem.download = 'selected-data.txt';
document.body.appendChild(elem);
elem.click();
document.body.removeChild(elem);
""",
)

我已经搜索过这个错误是否发生在其他人身上,但一无所获。

最佳答案

该示例适用于 Bokeh 1.4.0,您可能正在使用 Bokeh 2+。

如果将 savebutton.callback = ... 替换为 savebutton.js_on_click(...),它应该可以工作。

关于callback - Bokeh 按钮回调 : unexpected attribute 'callback' to Button, 中出现错误,类似的属性是 js_event_callbacks,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62540883/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com