uniapp Blob路径转文件流 并且将json对象和文件流一起传入后台
Posted 叫我扬大人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uniapp Blob路径转文件流 并且将json对象和文件流一起传入后台相关的知识,希望对你有一定的参考价值。
//选图片 chooseImage () { uni.chooseImage({ count: 100, //默认9 sizeType: [‘original‘, ‘compressed‘], success: (res) => { console.log(res) res.tempFilePaths.forEach(item => { console.log(item) this.imageList.push({ src: item, mode: ‘aspectFit‘ }) }) } }); }, var formData = new FormData(); this.imageList.forEach(item => { var myFile = new File([item.src], ‘‘, {type: "multipart/form-data"}); formData.append(‘file‘, myFile) }) formData.append(‘json‘, JSON.stringify(this.pub)) axios.post(`http://10.112.61.0:8080/app/productController/createProduct`, formData).then((response) => { }).then((err) => { })
以上是关于uniapp Blob路径转文件流 并且将json对象和文件流一起传入后台的主要内容,如果未能解决你的问题,请参考以下文章