在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]:
这怎么办?
答案 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