<template is="dom-bind" id="app">
<div>{{title}}</div>
<my-element></my-element>
</template>
我可以在my-element
内强制自动绑定模板重绘吗?
我可以获取模板,但更改它不会触发重绘:
var app = document.querySelector('#app');
app.title = 'Zaphod';
答案 0 :(得分:1)
您的代码应该有效,但设置title
需要等到聚合物准备就绪(即元素已经注册并准备好与之交互)。
var app = document.querySelector('#app');
document.addEventListener("WebComponentsReady", function () {
app.title = 'Zaphod';
});