在Polymer 1.0中是否有办法使用Node.bind()
以前的javascript设置绑定?
[忽略这一点:在stackoverflow中不允许显然是简洁的所以我必须写这个无用的句子才能发布问题。]
答案 0 :(得分:2)
简短回答是:否。 Polymer 1.0目前不支持命令式数据绑定。
在1.0中,数据绑定机制完全被重写,所以之前的0.5-ish技术如Node.bind('content', new PathObserver(obj, 'path.to.value'));
或
Polymer.import(["/elements/x-test.html"], function () {
var el = document.createElement('x-test');
el.setAttribute('foo', '{{bar}}');
document.querySelector("#insertion_point").appendChild(el);
});
或html-echo
不起作用。
此SO问题中的更多信息:Binding imperatively
Github中的更多信息:https://github.com/Polymer/polymer/issues/1778