https://blog.csdn.net/weixin_34049948/article/details/91388526
methods:{
onRead2(file) {
let content = file.file;
let data = new FormData();
data.append('img',content);
this.axios.post('图片上传地址',data)
.then((res) => {
let datas = res.data.datas.path;
this.msg.hallImg.push(`api地址${datas}`);
})
},
}复制代码