📜  axios 获取标头 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:00.254000             🧑  作者: Mango

代码示例6
axios.post(
'https://example.com/postSomething', 
{ // this is the body
 email: varEmail, 
 password: varPassword
},
{
  headers: {
    Authorization: 'Bearer ' + varToken
  }
})