如果API返回的数据中有诸如\u2028或者\r\n之类的换行符,就会导致JSON数据格式被破坏。
这个有什么统一的解决方案嘛?
var a=String(’\u2028\n\r\n{“a”:“11”}\n’).replace(/\s/g,’’);
JSON.parse(a)