显示上传成功,回调也正常给出,但是查看云存储,所有图片都是9byte。
const filePath=document.getElementById("upphoto").files[0]
const instance = window.instance
//上传图片
instance.uploadFile({
cloudPath: 'photo'+Date.now()+filePath.path.substring(filePath.path.lastIndexOf('.')),
filePath: filePath,
onUploadProgress: function (progressEvent) {
console.log(progressEvent);
var percentCompleted = Math.round((progressEvent.loaded * 100) / progressEvent.total);
}
})
.then((result) => {
// 上传结果
console.log(result)
});
你好,问题未复现,建议自己核实文件实际大小。