47 lines
1020 B
JavaScript
47 lines
1020 B
JavaScript
/**
|
|
* @param {string} url
|
|
* @returns {Object}
|
|
*/
|
|
function param2Obj(url) {
|
|
const search = url.split('?')[1]
|
|
if (!search) {
|
|
return {}
|
|
}
|
|
return JSON.parse(
|
|
'{"' +
|
|
decodeURIComponent(search)
|
|
.replace(/"/g, '\\"')
|
|
.replace(/&/g, '","')
|
|
.replace(/=/g, '":"')
|
|
.replace(/\+/g, ' ') +
|
|
'"}'
|
|
)
|
|
}
|
|
|
|
/**
|
|
* This is just a simple version of deep copy
|
|
* Has a lot of edge cases bug
|
|
* If you want to use a perfect deep copy, use lodash's _.cloneDeep
|
|
* @param {Object} source
|
|
* @returns {Object}
|
|
*/
|
|
function deepClone(source) {
|
|
if (!source && typeof source !== 'object') {
|
|
throw new Error('error arguments', 'deepClone')
|
|
}
|
|
const targetObj = source.constructor === Array ? [] : {}
|
|
Object.keys(source).forEach(keys => {
|
|
if (source[keys] && typeof source[keys] === 'object') {
|
|
targetObj[keys] = deepClone(source[keys])
|
|
} else {
|
|
targetObj[keys] = source[keys]
|
|
}
|
|
})
|
|
return targetObj
|
|
}
|
|
|
|
module.exports = {
|
|
param2Obj,
|
|
deepClone
|
|
}
|