1
我有一個聚合物性質定義爲:如何在setTimeout中綁定Polymer屬性?
properties: {
delay: {
type: Timeranges,
value: '5000'
}
}
而且我用這個屬性作爲這樣的超時:
setTimeout(function() {
request = ajax(request, custParams, inputValue.trim(), input, result, component.subType, component.queryParams);
}, "{{delay}}");
但是,這是行不通的。如果我指定一個文字數字作爲函數參數而不是"{{delay}}"
,它可以正常工作。我如何在這裏綁定delay
?