```javascript
uni.request({
url: aaa,
method: 'GET',
dataType: 'base64',
success: function(res) {
var base64 = res.data.slice(23);
// that.dataList.picList.push(base64);
console.log(base64);
that.getTextFromImage(base64);
}
});
在支付宝编辑器中模拟器可以正常转换 base64但是真机就会没有反应