Skip to content
Ron Buckton edited this page Jan 15, 2015 · 2 revisions

Parses and serializes a querystring.

Syntax

export module QueryString {
    function stringify(obj: { [key: string]: string | number | boolean | (string | number | boolean)[]): string;
    function parse(text: string): { [key: string]: string | number | boolean | (string | number | boolean)[];
}

Methods

stringify(Object)
Converts the provided object literal into a querystring.
parse(String)
Parses a querystring into an object.

Requirements

  • Supported Platforms: Browser
  • Module: httpclient
  • Library: httpclient.ts
Clone this wiki locally