wx.request 返回类型转不了json
wx.request({
url: tmpUrl,
data: { code: code },
dataType: ‘json’,
success: function (res2) {
var tmpObj = new Object();
console.log(typeof (tmpObj));
tmpObj = (res2.data);
console.log(’====44444’ + tmpObj);
console.log(typeof (tmpObj));
console.log(’=======’ + tmpObj.con);
});
第二个typeof (tmpObj) 微信开发工具是object类型, 手机上就是string类型。 JSON.parse也转不了。 我把服务器php文件转为utf-8无BOM格式 也不行。