0👍
You might parse the observable before sending it to the Axios.
const parsedIngredient = JSON.parse(JSON.stringify(this.ingredient))
Then send parsedIngredient
to the server.
Source:stackexchange.com
0👍
You might parse the observable before sending it to the Axios.
const parsedIngredient = JSON.parse(JSON.stringify(this.ingredient))
Then send parsedIngredient
to the server.