uniapp 上传后一直显示加载中
1.检查前后端上传有无问题
2.检查失败信息
await uni.uploadFile({
url,
filePath,
name,
formData,
header,
timeout: 30000000, // 自定义上传超时时间
fail: async function(err) {
$util.hideAll()
// 失败
// err 返回 {errMsg: "uploadFile:fail timeout"}
}
})
3.检查转发层限制,这里用的nginx,可参考对应代理设置