uni.uploadFile,上传超过10兆左右的文件就报错err:uploadFile:fail timeout,超时
解决:
在manifest.json文件中做超时配置
文章来源地址https://www.toymoban.com/news/detail-665058.html
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();
}
})
文章来源:https://www.toymoban.com/news/detail-665058.html
到了这里,关于uniapp 上传比较大的视频文件就超时的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!