Help Angular by taking a 1 minute survey!Go to surveyHome

HttpXhrBackend

An HttpBackend which uses the XMLHttpRequest API to send requests to a backend server.

      
      class HttpXhrBackend implements HttpBackend {
  handle(req: HttpRequest<any>): Observable<HttpEvent<any>>
}
    

Methods

Process a request and return a stream of response events.

handle(req: HttpRequest<any>): Observable<HttpEvent<any>>
      
      handle(req: HttpRequest<any>): Observable<HttpEvent<any>>
    
Parameters
req HttpRequest
Returns

Observable<HttpEvent<any>>