1
比方說,我有一個聚合物元素x-foo
,它使用模板進行數據綁定。如何判斷聚合物何時完成所有數據綁定?
<template>
<!--shadow DOM-->
<template repeat='{{item in items}}'>
<div class='content'>{{item}}</div>
</template>
</template>
items
是x-foo
一個屬性,該屬性決定什麼是存在於該圖。現在
,在這些方法之一飛的x-foo
我做的:
this.items = getNewItemList();
,然後嘗試訪問影子DOM內容,
this.shadowRoot.querySelectorAll('.content') // was supposed to return 5 elements
我發現聚合物仍然不是招不會遍歷模板循環並生成我的影子DOM內容。有沒有辦法知道它何時完成它?