XHRBackend
Creates XHRConnection
instances.
已弃用: see https://angular.io/guide/http
class XHRBackend implements ConnectionBackend {
createConnection(request: Request): XHRConnection
}
说明
This class would typically not be used by end users, but could be overridden if a different backend implementation should be used, such as in a node backend.
方法
使用说明
Example
- import {Http, MyNodeBackend, HTTP_PROVIDERS, BaseRequestOptions} from '@angular/http';
- @Component({
- viewProviders: [
- HTTP_PROVIDERS,
- {provide: Http, useFactory: (backend, options) => {
- return new Http(backend, options);
- }, deps: [MyNodeBackend, BaseRequestOptions]}]
- })
- class MyComponent {
- constructor(http:Http) {
- http.request('people.json').subscribe(res => this.people = res.json());
- }
- }