vue 使用 multipart/form-data 提交数据
闲话不多说了,直接上代码:
let fd = new FormData()
fd.append('name', 'wjw')
fd.append('age', 18)
this.$http({
url: `/wjw/updata/data`,
method: 'post',
data: fd,
headers: {
'Content-Type': 'multipart/form-data'
}
}).then(({ data }) => {
if (data) {
this.$message({
message: data.message,
type: 'success'
});
}
})