i am working on a vue / laravel project and i want to send an array and formdata with axios .
this is my code:
submit(){
//The FormData
const formData = new FormData
formData.set('images', this.imagesInfo)
//The Array
this.product ={
data: this.data,
option: this.option
}
//How can i send *this.product* and *formData* ?
axios.post('/admin/product/add', ****)
}
How can i send this.product and formData with axios?
application/x-www-form-urlencoded? How do you intend on reading it server-side?