var file = this.$refs.fileId.files[0]; let formData = new FormData(); formData.append("file",file); formData.append("content",content); that.$axios.post( url, formData ).then(function(response) { that.$message.success('上传成功'); }) .catch(function(error) { that.$message.error(res.data.msg); });
//前台提交后文件是以二进制文件流的形式传到后台
数据统一放在FormData中传递到后台