Как загрузить данные файла и формы с помощью функции feach в Nuxt Js
Я пытаюсь 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)
})