W3cubDocs

/Angular 4 TypeScript

RequestOptions

Experimental Class

Class Overview

class RequestOptions {
  constructor({method, headers, body, url, search, params, withCredentials,
       responseType}?: RequestOptionsArgs)
  
  
  method : RequestMethod|string
  headers : Headers
  body : any
  url : string
  params : URLSearchParams
  search : URLSearchParams
  withCredentials : boolean
  responseType : ResponseContentType
  merge(options?: RequestOptionsArgs) : RequestOptions
}

Class Description

Creates a request options object to be optionally provided when instantiating a Request.

This class is based on the RequestInit description in the Fetch Spec.

All values are null by default. Typical defaults can be found in the BaseRequestOptions class, which sub-classes RequestOptions.

Example (live demo)

import {RequestOptions, Request, RequestMethod} from '@angular/http';

var options = new RequestOptions({
  method: RequestMethod.Post,
  url: 'https://google.com'
});
var req = new Request(options);
console.log('req.method:', RequestMethod[req.method]); // Post
console.log('options.url:', options.url); // https://google.com

Constructor

constructor({method, headers, body, url, search, params, withCredentials,
       responseType}?: RequestOptionsArgs)

Class Details

method : RequestMethod|string

Http method with which to execute a Request. Acceptable methods are defined in the RequestMethod enum.

headers : Headers

Headers to be attached to a Request.

body : any

Body to be used when creating a Request.

url : string

Url with which to perform a Request.

params : URLSearchParams

Search parameters to be included in a Request.

search : URLSearchParams
withCredentials : boolean

Enable use credentials for a Request.

responseType : ResponseContentType
merge(options?: RequestOptionsArgs) : RequestOptions

Creates a copy of the RequestOptions instance, using the optional input as values to override existing values. This method will not change the values of the instance on which it is being called.

Note that headers and search will override existing values completely if present in the options object. If these values should be merged, it should be done prior to calling merge on the RequestOptions instance.

(live demo)

import {RequestOptions, Request, RequestMethod} from '@angular/http';

var options = new RequestOptions({
  method: RequestMethod.Post
});
var req = new Request(options.merge({
  url: 'https://google.com'
}));
console.log('req.method:', RequestMethod[req.method]); // Post
console.log('options.url:', options.url); // null
console.log('req.url:', req.url); // https://google.com

exported from http/index, defined in http/src/base_request_options.ts

© 2010–2017 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://angular.io/docs/ts/latest/api/http/index/RequestOptions-class.html