原因:JSON.parse 无法识别某些 url 中的特殊字符
解决方法:
首先 JSON.stringify(对象)
然后 encodeURIComponent(str)进行编码
跳转页面后再 decodeURIComponent(str)进行解码
最后在 JSON.parse(str)转对象
原因:JSON.parse 无法识别某些 url 中的特殊字符
解决方法:
首先 JSON.stringify(对象)
然后 encodeURIComponent(str)进行编码
跳转页面后再 decodeURIComponent(str)进行解码
最后在 JSON.parse(str)转对象