JSONPConnection

Experimental Class

Class Overview

class JSONPConnection {
  readyState : ReadyState
  request : Request
  response : Observable<Response>
  finished(data?: any) : void
}

Class Description

Abstract base class for an in-flight JSONP request.

Class Details

readyState : ReadyState

The ReadyState of this request.

request : Request

The outgoing HTTP request.

response : Observable<Response>

An observable that completes with the response, when the request is finished.

finished(data?: any) : void

Callback called when the JSONP request completes, to notify the application of the new data.

exported from @angular/http/index, defined in @angular/http/src/backends/jsonp_backend.ts

doc_Angular
2016-10-06 09:46:38
Comments
Leave a Comment

Please login to continue.