>插入的聚合物可以接收一些与另一个结合的属性
属性在上下文中,所以它可以相应地改变.
>在聚合物0.5时,我们可以使用PathObserver将属性绑定到
最近添加的组件的上下文属性.但是,我没有
在聚合物1.0中找到解决方案或等效物.
我创建了一个0.5的例子,对于1.0也是一样.参见下面的聚合物的注射代码.另外,为了清楚起见,您可以看到完整的空白示例.
Ej 0.5:
<polymer-element name="main-context"> <template> <one-element foo="{{foo}}"></one-element> <div ID="dynamic"> </div> </template> <script> polymer({ domready: function() { // injecting component into polymer and binding foo via PathObserver var el = document.createElement("another-element"); el.bind("foo",new PathObserver(this,"foo")); this.$.dynamic.appendChild(el); } }); </script></polymer-element>
请看完整的例子:http://plnkr.co/edit/2Aj3LcGP1t42xo1eq5V6?p=preview
Ej 1.0:
<dom-module ID="main-context"> <template> <one-element foo="{{foo}}"></one-element> <div ID="dynamic"> </div> </template></dom-module><script> polymer({ is: "main-context",ready: function() { // injecting component into polymer and binding foo via PathObserver var el = document.createElement("another-element"); // FIXME,there's no a path observer: el.bind("foo","foo")); this.$.dynamic.appendChild(el); } });</script>
请看完整的例子:http://plnkr.co/edit/K463dqEqduNH10AqSzhp?p=preview
你知道一些解决方法或等价物与聚合物1.0?
解决方法 现在没有直接的方法去做.您应该通过监听父元素的foo属性中的更改并监听以编程方式创建的元素的foo-changed事件来手动执行双重绑定.<script> polymer({ is: "main-context",propertIEs: { foo: { type: String,observer: 'fooChanged' } },ready: function() { var self = this; var el = this.$.el = document.createElement("another-element"); //set the initial value of child's foo property el.foo = this.foo; //Listen to foo-changed event to sync with parent's foo property el.addEventListener("foo-changed",function(ev){ self.foo = this.foo; }); this.$.dynamic.appendChild(el); },//sync changes in parent's foo property with child's foo property fooChanged: function(newValue) { if (this.$.el) { this.$.el.foo = newValue; } }});</script>
你可以在这里看到一个工作示例:http://plnkr.co/edit/mZd7BNTvXlqJdJ5xSq0o?p=preview
总结以上是内存溢出为你收集整理的动态插入的聚合物元素中的数据绑定全部内容,希望文章能够帮你解决动态插入的聚合物元素中的数据绑定所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)