3

我正在尝试使用 nativescript 网络工作者,但我遇到了问题。我想使用 http angular 服务在 webWorker.ts 中发出 http 请求我需要将 http angular 服务导入 worker.ts 并在那里使用它

我试图将http服务作为参数发送给worker.ts,但它不起作用,因为它正在初始化服务

我希望代码看起来像那个worker.ts

require("globals");
(<any>global).onmessage = (msg: any) => {
       (make the httpRequest..... ).subscribe(response=>{
          (<any>global).postMessage(response);
        })

}

你知道我该怎么做吗?

4

0 回答 0