查询字符串 轻松解析和字符串化URL查询字符串。 :rocket: 安装 :down_arrow_selector: $ npm install --save query-str API用法 :memo: 用URL解析查询字符串 const qs = require ( 'query-str' ) ; const myURL = 'http://foo.bar/buzz?myBool=true&myInt=2&myFloat=3.3&myString=fizz buzz' ; qs . parse ( myURL ) ; // => { myBool: true, myInt: 2, my