uni.uploadFile遇见的坑
这两天用uni.uni.uploadFile遇见个坑上传图片时候一直报错“uploadFile:fail createUploadTask:fail file not found”
我尝试各种方法都没解决。
但是最后发现 是因为路径问题,手机端路径是真实路径。但是PC是加密过的伪路径。
浏览器会保护文件真实路径,所以从input获得的的路径都是假的。
所以运行到微信小程序会一直报错,但是用真机运行就能跑的起来文章来源:https://www.toymoban.com/news/detail-510705.html
上代码文章来源地址https://www.toymoban.com/news/detail-510705.html
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);
}
});
});
},
到了这里,关于uni.uploadFile遇见的坑uploadFile:fail createUploadTask:fail file not found的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!