将小部件对象状态存储到ipython内核对象实例而不是对象类

时间:2019-03-06 19:39:13

标签: javascript python jupyter-notebook ipython

stateful widget tutorial之后,我们可以创建一个简单的DOM小部件。这是python代码:

import ipywidgets.widgets as widgets
from traitlets import Unicode

class HelloWidget(widgets.DOMWidget):
    _view_name = Unicode('HelloView').tag(sync=True)
    _view_module = Unicode('hello').tag(sync=True)
    _view_module_version = Unicode('0.1.0').tag(sync=True)
    value = Unicode('Hello World!').tag(sync=True)

以及javascript代码:

%%javascript
require.undef('hello');

define('hello', ["@jupyter-widgets/base"], function(widgets) {

    var HelloView = widgets.DOMWidgetView.extend({

        render: function() {
            this.el.textContent = this.model.get('value');
        },
    });

    return {
        HelloView : HelloView
    };
});

这可以在笔记本中做广告:

In [1]: HelloWidget()
Out [1]: Hello World!

现在,如果我要将小部件value状态存储到对象实例,则可以更改python代码,使其如下所示:

import ipywidgets.widgets as widgets
from traitlets import Unicode

class HelloWidget(widgets.DOMWidget):
    _view_name = Unicode('HelloView').tag(sync=True)
    _view_module = Unicode('hello').tag(sync=True)
    _view_module_version = Unicode('0.1.0').tag(sync=True)
    def __init__(self, s):
        super().__init__()
        self.value = Unicode(s).tag(sync=True)

但是,这行不通;状态未按预期呈现给输出单元(无输出):

In [1]: HelloWidget("Hello World!")
Out [1]: 

这怎么办?

1 个答案:

答案 0 :(得分:0)

我发现了这一点(感觉有点傻)。

trailets.Unicode对象是一个描述符,因此它必须附加到类对象HelloWidget上。因此正确的代码如下:

import ipywidgets.widgets as widgets
from traitlets import Unicode

class HelloWidget(widgets.DOMWidget):
    _view_name = Unicode('HelloView').tag(sync=True)
    _view_module = Unicode('hello').tag(sync=True)
    _view_module_version = Unicode('0.1.0').tag(sync=True)
    value = Unicode().tag(sync=True) # value is set to an empty string as placeholder

    def __init__(self, s):
        super().__init__()
        self.value = s # initialize with a value here