I can't append an object to FormData
I use Axios
I don't want to send data by JSON.stringify()
data () {
return {
product: {
title: '',
description: '',
properties: {
property1: '',
property2: ''
}
}
}
}
I want this
{title: '', description: '', properties:{property1: '', property2: ''}}