/**
* 跳转传参只能是 String,所以参数是对象的话得 stringify,同时 encodeURIComponent 避免有 ? 时被截掉
*/
function object2String(obj) {
return encodeURIComponent(JSON.stringify(obj))
}
/**
* 解析回 object
*/
function string2Object(str) {
return JSON.parse(decodeURIComponent(str))
}