HttpClientJsonpModule

An NgModule that enables JSONP support in HttpClient.

一个 NgModule,用来为 HttpClient 启用 JSONP 支持。

class HttpClientJsonpModule { }

说明

Without this module, Jsonp requests will reach the backend with method JSONP, where they'll be rejected.

如果没有该模块,则 Jsonp 请求会通过 JSONP 方法传给后端,它们通常会被服务器拒绝。

注解

@NgModule({ providers: [ JsonpClientBackend, { provide: JsonpCallbackContext, useFactory: jsonpCallbackContext }, { provide: HTTP_INTERCEPTORS, useClass: JsonpInterceptor, multi: true }, ] })