小程序json字符串转 json对象的方法

success: function (res) { console.log(res.data) var jsonStr= res.data; jsonStr = jsonStr.replace(" ",""); if(typeof jsonStr!= 'object'){ jsonStr= jsonStr.replace(/\ufeff/g,"");//重点 var jj = JSON.parse(jsonStr); res.data = jj; } if (res.data.status==1){ console.log("ok") }

注:如果原本用jsonp传输的,小程序开发的时候需要先转为json的,可以用substr方法

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/b1c7a2ecc5a2ad9f47c3a8e1e6a8ff0c.html