uni.uploadFile({ url: 'http://192.168.0.14:9090/ele/strign/file.MP4', //仅为示例,非真实的接口地址 filePath: video.src, name: 'file.mp4', formData: { 'user': 'test' }, header: { 'content-type': 'multipart/form-data' }, success: (uploadFileRes) => { console.log('success', uploadFileRes.data); }, complete:function(e){ console.log('直传请求uploadFile', e); } }); 用这种方式会一直报错 "errMsg": "uploadFile:fail statusCode: null" 我在浏览器或者postman上传使用的地址就是 [http://192.168.0.14:9090/ele/strign/file.MP4](https://link.segmentfault.com/?enc=ePZSInIcw6kqCHfUsfM0Xw%3D%3D.AwWfY%2FITvO1eQCR0JhyKypQMvdjaTniHyWK2FDDb4UhOKd2ZOA26wI6lhF0aBtpM) 能够上传成功,uniapp上该如何上传呢?