Пытаюсь поставить кастомный заголовок в аксиос по инструкции, но ничего не ставится
sendData () {
axios.post('http://localhost:7777', {
headers: {
'X-Custom-Header': 'foobar'
}
})
.then((res) => {
Cookies.set('Answer', res.data.answer)
})
}
'X-Custom-Header': 'foobar'
это не уходит в запрос. Почему? Как поставить свой заголовок? На сервере вот это
app.use((req, res, next) => {
res.header('Access-Control-Allow-Origin', 'http://localhost:8080')
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE')
res.header("Access-Control-Allow-Headers", "X-Requested-With, Content-Type")
next()
})
app.post('/', (req, res) => {
console.log(req.headers)
res.send({
answer: 'Random shit recieved successfully'
})
})
UPD. вопрос решил