2012-02-27 11:09:34 -08:00
|
|
|
# Query String
|
|
|
|
|
2012-03-02 15:14:03 -08:00
|
|
|
Stability: 3 - Stable
|
|
|
|
|
2012-02-27 11:09:34 -08:00
|
|
|
<!--name=querystring-->
|
2010-10-28 23:18:16 +11:00
|
|
|
|
2010-11-18 15:00:24 +03:00
|
|
|
This module provides utilities for dealing with query strings.
|
|
|
|
It provides the following methods:
|
2010-10-28 23:18:16 +11:00
|
|
|
|
2012-02-27 11:09:34 -08:00
|
|
|
## querystring.stringify(obj, [sep], [eq])
|
2010-10-28 23:18:16 +11:00
|
|
|
|
2010-11-18 15:00:24 +03:00
|
|
|
Serialize an object to a query string.
|
2011-12-27 17:43:58 +09:00
|
|
|
Optionally override the default separator (`'&'`) and assignment (`'='`)
|
|
|
|
characters.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2011-08-29 16:21:37 -06:00
|
|
|
querystring.stringify({ foo: 'bar', baz: ['qux', 'quux'], corge: '' })
|
2010-10-28 23:18:16 +11:00
|
|
|
// returns
|
2011-08-29 16:21:37 -06:00
|
|
|
'foo=bar&baz=qux&baz=quux&corge='
|
2010-10-28 23:18:16 +11:00
|
|
|
|
2011-08-29 16:21:37 -06:00
|
|
|
querystring.stringify({foo: 'bar', baz: 'qux'}, ';', ':')
|
2010-10-28 23:18:16 +11:00
|
|
|
// returns
|
2011-08-29 16:21:37 -06:00
|
|
|
'foo:bar;baz:qux'
|
2010-10-28 23:18:16 +11:00
|
|
|
|
2012-02-27 11:09:34 -08:00
|
|
|
## querystring.parse(str, [sep], [eq])
|
2010-10-28 23:18:16 +11:00
|
|
|
|
2010-11-18 15:00:24 +03:00
|
|
|
Deserialize a query string to an object.
|
2011-12-27 17:43:58 +09:00
|
|
|
Optionally override the default separator (`'&'`) and assignment (`'='`)
|
|
|
|
characters.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2011-08-29 16:21:37 -06:00
|
|
|
querystring.parse('foo=bar&baz=qux&baz=quux&corge')
|
2010-10-28 23:18:16 +11:00
|
|
|
// returns
|
2011-08-29 16:21:37 -06:00
|
|
|
{ foo: 'bar', baz: ['qux', 'quux'], corge: '' }
|
2010-10-28 23:18:16 +11:00
|
|
|
|
2012-02-27 11:09:34 -08:00
|
|
|
## querystring.escape
|
2010-10-28 23:18:16 +11:00
|
|
|
|
2010-11-18 15:00:24 +03:00
|
|
|
The escape function used by `querystring.stringify`,
|
|
|
|
provided so that it could be overridden if necessary.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
2012-02-27 11:09:34 -08:00
|
|
|
## querystring.unescape
|
2010-10-28 23:18:16 +11:00
|
|
|
|
2010-11-18 15:00:24 +03:00
|
|
|
The unescape function used by `querystring.parse`,
|
|
|
|
provided so that it could be overridden if necessary.
|