什么是聚合物中的模板结合?
What is template-bound in polymer?
我注意到 firebase 聚合物中有一个模板绑定 firebase-login.html
在搜索聚合物文档后找不到那是什么。
另外,文档中有任何聚合物事件参考吗?
这是在 Polymer 的自动绑定模板.
中发生数据绑定后触发的事件
<template id="myTemplate" is="auto-binding">
</template>
<script>
var template = document.getElementById("myTemplate");
template.addEventListener('template-bound', function() {
console.log('ready');
});
</script>
The auto-binding template inserts the instances it creates immediately
after itself in the DOM tree (not in its shadow DOM).
After adding the instances, the auto-binding template fires the
template-bound event.
您可以从 here 阅读更多内容。
我注意到 firebase 聚合物中有一个模板绑定 firebase-login.html
在搜索聚合物文档后找不到那是什么。
另外,文档中有任何聚合物事件参考吗?
这是在 Polymer 的自动绑定模板.
中发生数据绑定后触发的事件<template id="myTemplate" is="auto-binding">
</template>
<script>
var template = document.getElementById("myTemplate");
template.addEventListener('template-bound', function() {
console.log('ready');
});
</script>
The auto-binding template inserts the instances it creates immediately after itself in the DOM tree (not in its shadow DOM).
After adding the instances, the auto-binding template fires the template-bound event.
您可以从 here 阅读更多内容。