1. 程式人生 > >NodeJS字典轉URL中的引數值

NodeJS字典轉URL中的引數值

Node的querystring.stringify,類似php的http_build_query,Python的urllib.urlencode。

const querystring = require('querystring');
querystring.stringify({ foo: 'bar', baz: ['qux', 'quux'], corge: '' });
// returns 'foo=bar&baz=qux&baz=quux&corge='

querystring.stringify({ foo: 'bar', baz: 'qux'
}, ';', ':'); // returns 'foo:bar;baz:qux'

參考:https://nodejs.org/api/querystring.html#querystring_querystring_stringify_obj_sep_eq_options