使用uni.chooseImage获取图片,在浏览器中返回的值是errMsg: "chooseImage:ok"tempFilePaths: (...)
tempFiles: [File]但是打包成app获取的值就只有{
"path": "_doc/uniapp_temp_1697873907020/camera/1697873950108.jpg",
"size": 10407
}
我的代码: startEnd(item) {
var than = this;
uni.chooseImage({
count: 1,
sizeType: ['original', 'compressed'],
success: function(res) {
console.log(res);
}
});
},
尹小强 (作者)
如果直接上传是可以,但是我需要压缩,所以想获取文件压缩后再生成临时地址,再使用
2023-10-21 17:36