填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

JsonpInterceptor

使用 JSONP 方法标识这些请求,并将其转移到 JsonpClientBackend

Identifies requests with the method JSONP and shifts them to the JsonpClientBackend.

      
      class JsonpInterceptor {
  intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>
}
    

参见

方法

识别并处理给定的 JSONP 请求。

Identifies and handles a given JSONP request.

      
      intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>
    
参数
req HttpRequest

要处理的传出请求对象。

The outgoing request object to handle.

next HttpHandler

链中的下一个拦截器,如果链中没有拦截器,则为其后端接口。

The next interceptor in the chain, or the backend if no interceptors remain in the chain.

返回值

事件流的可观察对象。

Observable<HttpEvent<any>>: An observable of the event stream.