【发布时间】:2020-02-04 13:22:58
【问题描述】:
如何在 NuxtJs 中使用 feach 上传文件和表单数据
我尝试了multipart/form-data & application/json 但它不起作用
fetch(this.$store.state.apiUrl+'/gf_forms', {
method: "POST",
headers: {
'Content-Type': 'application/json',
},
//make sure to serialize your JSON body
body: JSON.stringify(this.form)
})
.then(response => response.json())
.then(res => {
console.log(res)
})
【问题讨论】: