title: '',
description: '',
work_price: '',
material_price: '',
price: '',
image: null,
}),
methods: {
loadImages() {
const el = document.createElement('input')
el.setAttribute('type', 'file')
el.click()
el.addEventListener('input', () => {
this.image = el.files[0]
})
},
createdAccesory() {
const formdata = new FormData()
formdata.append('image', this.image, this.image.name)
axios.post('/panel/personal/accessories/store', formdata, {
headers: { 'content-type': 'multipart/form-data' }
}).then(response => {
console.log(response)
})
}
}
}
</script>
Можете подсказать почему в респонсе поле image пустое? Буду благодарен
попробуй изменить контент тайп на application/x-www-form-urlencoded
Обсуждают сегодня