BaseResponseOptions

Experimental Class

Class Overview

class BaseResponseOptions {
  constructor()
  
  
}

Class Description

Subclass of ResponseOptions, with default values.

Default values:

  • status: 200
  • headers: empty Headers object

This class could be extended and bound to the ResponseOptions class when configuring an Injector, in order to override the default options used by Http to create Responses.

Example (live demo)

import {provide} from '@angular/core';
import {bootstrap} from '@angular/platform-browser/browser';
import {HTTP_PROVIDERS, Headers, Http, BaseResponseOptions, ResponseOptions} from
'@angular/http';
import {App} from './myapp';

class MyOptions extends BaseResponseOptions {
  headers:Headers = new Headers({network: 'github'});
}

bootstrap(App, [HTTP_PROVIDERS, {provide: ResponseOptions, useClass: MyOptions}]);

The options could also be extended when manually creating a Response object.

Example (live demo)

import {BaseResponseOptions, Response} from '@angular/http';

var options = new BaseResponseOptions();
var res = new Response(options.merge({
  body: 'Angular',
  headers: new Headers({framework: 'angular'})
}));
console.log('res.headers.get("framework"):', res.headers.get('framework')); // angular
console.log('res.text():', res.text()); // Angular;

Annotations

@Injectable()

Constructor

constructor()

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

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

Please login to continue.