PC微信调用wx.getLocalImgData返回数据为空?
PC微信3.9.2.114,H5调用wx.getLocalImgData得到的数据为空,也就是localData为空。 {"localData":"","errMsg":"getLocalImgData:ok"} 之前版本都是好的,移动版微信也是正常的。 wx.chooseImage({ count:1, sizeType: ['compressed'], success: function (res) { var localIds = res.localIds; for(var i=0;i<localIds.length;i++){ wx.getLocalImgData({ localId: localIds[i], success: function (res) { alert(JSON.stringify(res)) } }) } } })