uploadFile(Object object)

阿里云单文件大小限制为100M,腾讯云单文件最大为5G

请求参数

Object object

响应参数

示例代码

  1. uni.chooseImage({ count: 1, success(res) { console.log(res); if (res.tempFilePaths.length > 0) { let filePath = res.tempFilePaths[0] //进行上传操作 // promise const result = await uniCloud.uploadFile({ filePath: filePath }); // callback uniCloud.uploadFile({ filePath: filePath }, success() {}, fail() {}, complete() {} }); } }});

Tips -