# 讲 url 查询串转成对象

query2Object(string)

# params

  1. {string}: 需要解析的串

# return

{object}: 返回转换解析后的对象

# eg

const result = query2Object('a=1&b=b&c=true&d=false&e=null&f')
// {
//   a: 1,
//   b: 'b',
//   c: true,
//   d: false,
//   e: null,
//   f: ''
// }
1
2
3
4
5
6
7
8
9
Last Updated: 4/21/2021, 5:05:43 AM