获取 query string 参数转对象
Optional
query string
参数名
qsParse('start=0&count=20&x=1&x=2&x=3', 'x'); /// [1, 2, 3]qsParse('http://a.cn/123/test?start=0&count=20&x=1&x=2&x=3#123'); /// { start: '0', count: '20', x: [1, 2, 3], '#': 123, '_': 'test', '/': 'test?start=0&count=20&x=1&x=2&x=3#123' } Copy
qsParse('start=0&count=20&x=1&x=2&x=3', 'x'); /// [1, 2, 3]qsParse('http://a.cn/123/test?start=0&count=20&x=1&x=2&x=3#123'); /// { start: '0', count: '20', x: [1, 2, 3], '#': 123, '_': 'test', '/': 'test?start=0&count=20&x=1&x=2&x=3#123' }
获取 query string 参数转对象