linkJSONPConnection
npm Package | @angular/http |
---|---|
Module | import { JSONPConnection } from '@angular/http'; |
Source | http/src/backends/jsonp_backend.ts |
linkDeprecation Notes
use @angular/common/http instead
linkInterface Overview
interface JSONPConnection extends Connection implements Connection {
readyState: ReadyState
request: Request
response: Observable<Response>
finished(data?: any)
}
linkDescription
Base class for an in-flight JSONP request.
linkMembers
response: Observable<Response>
An observable that completes with the response, when the request is finished.