uni.uploadFile遇见的坑
这两天用uni.uni.uploadFile遇见个坑上传图片时候一直报错“uploadFile:fail createUploadTask:fail file not found”
我尝试各种方法都没解决。
但是最后发现 是因为路径问题,手机端路径是真实路径。但是PC是加密过的伪路径。
浏览器会保护文件真实路径,所以从input获得的的路径都是假的。
所以运行到微信小程序会一直报错,但是用真机运行就能跑的起来
上代码
beforeupload(file) {file.file.forEach(item => {uni.uploadFile({url: this.$url + '/staff/center/upload',filePath: item.url,name: 'file',header: {token: uni.getStorageSync('token')},success: uploadFileRes => {let file = JSON.parse(uploadFileRes.data);this.fileList1.push({url: file.data.fullurl});this.tj_imglist.push(file.data.url);}});});},
来源地址:https://blog.csdn.net/weixin_51110842/article/details/129385500