徐总多门店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
539 B

var staticDecodeURIComponent = require('./staticDecodeURIComponent')
var arrayEach = require('./arrayEach')
var isString = require('./isString')
/**
* 反序列化查询参数
* @param {String} query 字符串
*/
function unserialize (str) {
var items
var result = {}
if (str && isString(str)) {
arrayEach(str.split('&'), function (param) {
items = param.split('=')
result[staticDecodeURIComponent(items[0])] = staticDecodeURIComponent(items[1] || '')
})
}
return result
}
module.exports = unserialize