我有像下面这样的网络工作者:
class FetchWorker {
constructor(id) {
this.id = id;
this.ids = [];
this.timer = 1;
}
start() {
this.fetchData();
}
addIds(ids) {
this.ids.push(...ids);
}
sendData(method, data){
self.postMessage(JSON.stringify({
method,
data
}))
}
fetchData() {
this.timer *= 2;
console.log(this.id,') ### this', this);
console.log(this.id,') ### ids', this.ids);
console.log(this.id,') ### FetchData', this.ids.length, this.timer);
console.log(this.id,') ######');
if(!this.ids.length) {
setTimeout(this.fetchData, this.timer);
return;
}
console.log(this.id, ')FETCHED ...');
this.sendData('webworker:fetchedAds', this.ids);
this.sendData('webworker:timer', this.timer);
setTimeout(this.fetchData, this.timer);
}
}
const id = Number.parseInt((Math.random() * 100) + '');
console.log('self', self);
const worker = new FetchWorker(id);
self.addEventListener('message', (event) => {
const message = JSON.parse(event.data);
const {method, data} = message;
if (method === 'webworker:addids') {
worker.addIds(data);
}
if (method === 'webworker:startFetching'){
worker.start();
}
});
我正在创建这个工作者并用ids和start命令向他发送消息,但是当我尝试将ids数组的长度写入控制台时,我在fetchData方法中得到错误,错误是无法读取未定义的属性长度,
我检查了这个并且在我的fetchData方法中指向DedicatedWorkerGlobalScope而不是FetchWorker类,这对我来说有点困惑,因为我不知道为什么这在类方法中不存在
答案 0 :(得分:2)
我通过将它绑定到setTimeouts中的fetchData解决了我的问题,它看起来像:
setTimeout(this.fetchData.bind(this), this.timer * 1000);
我不知道为什么必须这样做