0
選擇聚合物元件考慮這個元素:動態屬性值
<file-list type="Person" oid="[[person.id]]"></file-list>
我有幾個人對我的高分子SPA與屬性type
和person
各種值。
他們選擇這樣,工作原理:
var f = document.querySelectorAll("file-list[type='Person']");
但這樣,不:
var f = document.querySelectorAll("file-list[oid='" + oid + "']");
什麼我錯在這裏做什麼?
元素設置是這樣的:
Polymer({
is : "file-list",
properties : {
oid : {
type : String
},
type : {
type : String
}
}
// ... etc
});
將評估什麼'oid'? –