Cookies concent notice

This site uses cookies from Google to deliver its services and to analyze traffic.
Learn more
Skip to main content
Say hello to Angular's future home!Check out Angular.devHome
/

JsonpInterceptor

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

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

See also

Methods

Identifies and handles a given JSONP request.

      
      intercept(initialRequest: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>
    
Parameters
initialRequest HttpRequest<any>

The outgoing request object to handle.

next HttpHandler

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

Returns

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