赞
踩
JSON.parse无法识别某些url中的特殊字符,所以报错
对需要做JSON.parse的字符串先做编码处理,encodeURIComponent(str),再用JSON.parse将其转成js对象,最后通过decodeURIComponent(str)将字符串解码即可使用。
encodeURIComponent(str)
decodeURIComponent(str)