1{ 2 "type": "module", 3 "source": "doc/api/querystring.md", 4 "modules": [ 5 { 6 "textRaw": "Query string", 7 "name": "querystring", 8 "introduced_in": "v0.1.25", 9 "stability": 3, 10 "stabilityText": "Legacy", 11 "desc": "<p><strong>Source Code:</strong> <a href=\"https://github.com/nodejs/node/blob/v14.20.1/lib/querystring.js\">lib/querystring.js</a></p>\n<p>The <code>querystring</code> module provides utilities for parsing and formatting URL\nquery strings. It can be accessed using:</p>\n<pre><code class=\"language-js\">const querystring = require('querystring');\n</code></pre>\n<p>The <code>querystring</code> API is considered Legacy. While it is still maintained,\nnew code should use the <a href=\"url.html#url_class_urlsearchparams\" class=\"type\"><URLSearchParams></a> API instead.</p>", 12 "methods": [ 13 { 14 "textRaw": "`querystring.decode()`", 15 "type": "method", 16 "name": "decode", 17 "meta": { 18 "added": [ 19 "v0.1.99" 20 ], 21 "changes": [] 22 }, 23 "signatures": [ 24 { 25 "params": [] 26 } 27 ], 28 "desc": "<p>The <code>querystring.decode()</code> function is an alias for <code>querystring.parse()</code>.</p>" 29 }, 30 { 31 "textRaw": "`querystring.encode()`", 32 "type": "method", 33 "name": "encode", 34 "meta": { 35 "added": [ 36 "v0.1.99" 37 ], 38 "changes": [] 39 }, 40 "signatures": [ 41 { 42 "params": [] 43 } 44 ], 45 "desc": "<p>The <code>querystring.encode()</code> function is an alias for <code>querystring.stringify()</code>.</p>" 46 }, 47 { 48 "textRaw": "`querystring.escape(str)`", 49 "type": "method", 50 "name": "escape", 51 "meta": { 52 "added": [ 53 "v0.1.25" 54 ], 55 "changes": [] 56 }, 57 "signatures": [ 58 { 59 "params": [ 60 { 61 "textRaw": "`str` {string}", 62 "name": "str", 63 "type": "string" 64 } 65 ] 66 } 67 ], 68 "desc": "<p>The <code>querystring.escape()</code> method performs URL percent-encoding on the given\n<code>str</code> in a manner that is optimized for the specific requirements of URL\nquery strings.</p>\n<p>The <code>querystring.escape()</code> method is used by <code>querystring.stringify()</code> and is\ngenerally not expected to be used directly. It is exported primarily to allow\napplication code to provide a replacement percent-encoding implementation if\nnecessary by assigning <code>querystring.escape</code> to an alternative function.</p>" 69 }, 70 { 71 "textRaw": "`querystring.parse(str[, sep[, eq[, options]]])`", 72 "type": "method", 73 "name": "parse", 74 "meta": { 75 "added": [ 76 "v0.1.25" 77 ], 78 "changes": [ 79 { 80 "version": "v8.0.0", 81 "pr-url": "https://github.com/nodejs/node/pull/10967", 82 "description": "Multiple empty entries are now parsed correctly (e.g. `&=&=`)." 83 }, 84 { 85 "version": "v6.0.0", 86 "pr-url": "https://github.com/nodejs/node/pull/6055", 87 "description": "The returned object no longer inherits from `Object.prototype`." 88 }, 89 { 90 "version": [ 91 "v6.0.0", 92 "v4.2.4" 93 ], 94 "pr-url": "https://github.com/nodejs/node/pull/3807", 95 "description": "The `eq` parameter may now have a length of more than `1`." 96 } 97 ] 98 }, 99 "signatures": [ 100 { 101 "params": [ 102 { 103 "textRaw": "`str` {string} The URL query string to parse", 104 "name": "str", 105 "type": "string", 106 "desc": "The URL query string to parse" 107 }, 108 { 109 "textRaw": "`sep` {string} The substring used to delimit key and value pairs in the query string. **Default:** `'&'`.", 110 "name": "sep", 111 "type": "string", 112 "default": "`'&'`", 113 "desc": "The substring used to delimit key and value pairs in the query string." 114 }, 115 { 116 "textRaw": "`eq` {string}. The substring used to delimit keys and values in the query string. **Default:** `'='`.", 117 "name": "eq", 118 "type": "string", 119 "default": "`'='`", 120 "desc": ". The substring used to delimit keys and values in the query string." 121 }, 122 { 123 "textRaw": "`options` {Object}", 124 "name": "options", 125 "type": "Object", 126 "options": [ 127 { 128 "textRaw": "`decodeURIComponent` {Function} The function to use when decoding percent-encoded characters in the query string. **Default:** `querystring.unescape()`.", 129 "name": "decodeURIComponent", 130 "type": "Function", 131 "default": "`querystring.unescape()`", 132 "desc": "The function to use when decoding percent-encoded characters in the query string." 133 }, 134 { 135 "textRaw": "`maxKeys` {number} Specifies the maximum number of keys to parse. Specify `0` to remove key counting limitations. **Default:** `1000`.", 136 "name": "maxKeys", 137 "type": "number", 138 "default": "`1000`", 139 "desc": "Specifies the maximum number of keys to parse. Specify `0` to remove key counting limitations." 140 } 141 ] 142 } 143 ] 144 } 145 ], 146 "desc": "<p>The <code>querystring.parse()</code> method parses a URL query string (<code>str</code>) into a\ncollection of key and value pairs.</p>\n<p>For example, the query string <code>'foo=bar&abc=xyz&abc=123'</code> is parsed into:</p>\n<!-- eslint-skip -->\n<pre><code class=\"language-js\">{\n foo: 'bar',\n abc: ['xyz', '123']\n}\n</code></pre>\n<p>The object returned by the <code>querystring.parse()</code> method <em>does not</em>\nprototypically inherit from the JavaScript <code>Object</code>. This means that typical\n<code>Object</code> methods such as <code>obj.toString()</code>, <code>obj.hasOwnProperty()</code>, and others\nare not defined and <em>will not work</em>.</p>\n<p>By default, percent-encoded characters within the query string will be assumed\nto use UTF-8 encoding. If an alternative character encoding is used, then an\nalternative <code>decodeURIComponent</code> option will need to be specified:</p>\n<pre><code class=\"language-js\">// Assuming gbkDecodeURIComponent function already exists...\n\nquerystring.parse('w=%D6%D0%CE%C4&foo=bar', null, null,\n { decodeURIComponent: gbkDecodeURIComponent });\n</code></pre>" 147 }, 148 { 149 "textRaw": "`querystring.stringify(obj[, sep[, eq[, options]]])`", 150 "type": "method", 151 "name": "stringify", 152 "meta": { 153 "added": [ 154 "v0.1.25" 155 ], 156 "changes": [] 157 }, 158 "signatures": [ 159 { 160 "params": [ 161 { 162 "textRaw": "`obj` {Object} The object to serialize into a URL query string", 163 "name": "obj", 164 "type": "Object", 165 "desc": "The object to serialize into a URL query string" 166 }, 167 { 168 "textRaw": "`sep` {string} The substring used to delimit key and value pairs in the query string. **Default:** `'&'`.", 169 "name": "sep", 170 "type": "string", 171 "default": "`'&'`", 172 "desc": "The substring used to delimit key and value pairs in the query string." 173 }, 174 { 175 "textRaw": "`eq` {string}. The substring used to delimit keys and values in the query string. **Default:** `'='`.", 176 "name": "eq", 177 "type": "string", 178 "default": "`'='`", 179 "desc": ". The substring used to delimit keys and values in the query string." 180 }, 181 { 182 "textRaw": "`options`", 183 "name": "options", 184 "options": [ 185 { 186 "textRaw": "`encodeURIComponent` {Function} The function to use when converting URL-unsafe characters to percent-encoding in the query string. **Default:** `querystring.escape()`.", 187 "name": "encodeURIComponent", 188 "type": "Function", 189 "default": "`querystring.escape()`", 190 "desc": "The function to use when converting URL-unsafe characters to percent-encoding in the query string." 191 } 192 ] 193 } 194 ] 195 } 196 ], 197 "desc": "<p>The <code>querystring.stringify()</code> method produces a URL query string from a\ngiven <code>obj</code> by iterating through the object's \"own properties\".</p>\n<p>It serializes the following types of values passed in <code>obj</code>:\n<a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type\" class=\"type\"><string></a> | <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type\" class=\"type\"><number></a> | <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt\" class=\"type\"><bigint></a> | <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type\" class=\"type\"><boolean></a> | <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type\" class=\"type\"><string[]></a> | <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type\" class=\"type\"><number[]></a> | <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt\" class=\"type\"><bigint[]></a> | <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type\" class=\"type\"><boolean[]></a>\nThe numeric values must be finite. Any other input values will be coerced to\nempty strings.</p>\n<pre><code class=\"language-js\">querystring.stringify({ foo: 'bar', baz: ['qux', 'quux'], corge: '' });\n// Returns 'foo=bar&baz=qux&baz=quux&corge='\n\nquerystring.stringify({ foo: 'bar', baz: 'qux' }, ';', ':');\n// Returns 'foo:bar;baz:qux'\n</code></pre>\n<p>By default, characters requiring percent-encoding within the query string will\nbe encoded as UTF-8. If an alternative encoding is required, then an alternative\n<code>encodeURIComponent</code> option will need to be specified:</p>\n<pre><code class=\"language-js\">// Assuming gbkEncodeURIComponent function already exists,\n\nquerystring.stringify({ w: '中文', foo: 'bar' }, null, null,\n { encodeURIComponent: gbkEncodeURIComponent });\n</code></pre>" 198 }, 199 { 200 "textRaw": "`querystring.unescape(str)`", 201 "type": "method", 202 "name": "unescape", 203 "meta": { 204 "added": [ 205 "v0.1.25" 206 ], 207 "changes": [] 208 }, 209 "signatures": [ 210 { 211 "params": [ 212 { 213 "textRaw": "`str` {string}", 214 "name": "str", 215 "type": "string" 216 } 217 ] 218 } 219 ], 220 "desc": "<p>The <code>querystring.unescape()</code> method performs decoding of URL percent-encoded\ncharacters on the given <code>str</code>.</p>\n<p>The <code>querystring.unescape()</code> method is used by <code>querystring.parse()</code> and is\ngenerally not expected to be used directly. It is exported primarily to allow\napplication code to provide a replacement decoding implementation if\nnecessary by assigning <code>querystring.unescape</code> to an alternative function.</p>\n<p>By default, the <code>querystring.unescape()</code> method will attempt to use the\nJavaScript built-in <code>decodeURIComponent()</code> method to decode. If that fails,\na safer equivalent that does not throw on malformed URLs will be used.</p>" 221 } 222 ], 223 "type": "module", 224 "displayName": "querystring" 225 } 226 ] 227}