我试图getResponse
在 Web 组件完成加载时运行一次。但是,当我尝试运行它时,该debounce
函数仅充当异步延迟,并在 5000 毫秒后运行 4 次。
static get properties() {
return {
procedure: {
type: String,
observer: 'debounce'
}
}
}
debounce() {
this._debouncer = Polymer.Debouncer.debounce(this._debouncer, Polymer.Async.timeOut.after(5000), () => {
this.getResponse();
});
}
getResponse() {
console.log('get resp');
}
getResponse
加载元素后运行一次需要什么?