在 Angular 服务工作器中,HTTP 请求不起作用可能是由于以下几个原因导致的:
import { HttpClientModule } from '@angular/common/http';
@NgModule({
imports: [
HttpClientModule
]
})
export class AppModule { }
import { HttpClient } from '@angular/common/http';
@Injectable()
export class MyService {
constructor(private http: HttpClient) { }
}
import { HttpClient } from '@angular/common/http';
@Injectable()
export class MyService {
constructor(private http: HttpClient) { }
getData() {
return this.http.get('https://example.com/api/data');
}
}
import { ServiceWorkerModule } from '@angular/service-worker';
import { environment } from '../environments/environment';
@NgModule({
imports: [
ServiceWorkerModule.register('ngsw-worker.js', { enabled: environment.production })
]
})
export class AppModule { }
以上是解决 Angular 服务工作器中 HTTP 请求不起作用的一些常见方法。请根据具体情况逐一检查这些问题,并根据需要进行修复。