uni.uploadFile,上传超过10兆左右的文件就报错err:uploadFile:fail timeout,超时
解决:
在manifest.json文件中做超时配置
uni.uploadFile({url: this.action,method: "POST",header: {'Authorization': uni.getStorageSync('userData').token },filePath: videoFile,name: 'file',success: (result) => {},fail:(error)=>{uni.$u.toast('请求超时,请重新再试')uni.hideLoading();}})