0
聚合物GET元素我有下面的模板我的聚合物組分中有條件模板
<polymer-element name="my-element" attributes="show">
<template if={{show}}>
<select id="conditional-select">
</select>
</template>
<script>
Polymer({
showChanged: function() {
console.log(this.$['conditional-select']); //undefined
setTimeout(function(){
console.log(this.$['conditional-select']); //got it!
},1000)
}
})
</script>
</polymer-element>
爲什麼第一個控制檯輸出始終undefined
展出改變? 我明白了,那個DOM元素還沒有在showChanged
內呈現,但是如何正確地等待呢?
可我知道是誰改變'show'屬性值? – Zesky