let input = {
'email': email,
'password': password
};
axios({
method:'POST',
url: URL,
headers: {
'Content-type': 'application/json; charset=utf-8',
'Accept': 'application/json; charset=utf-8'
},
data: input
}).then(function (response){
console.log(response);
})
.catch(function (error) {
});
Я пытаюсь запросить API с помощью axios, используя метод post.Он не видел set request заголовки content-type, но если я использую jquery ajax, то все в порядке.
![image of headers](https://i.stack.imgur.com/mW42m.png)