Published
- 1 min read
header in axios
The solution for this is noted below
header in axios
Solution
axios.post(
'url',
{ body: data },
{
headers: {
'Content-Type': 'application/json'
}
}
)
Try other methods by searching on the site. That is if this doesn’t work