axios用headers傳參,設置請求頭token


新建一個配置文件http.js  

// 導入axios
import axios from 'axios';
// 全局配置默認路由
axios.defaults.baseURL = 'http://192.168.0.157:8989/xxxx/xxx/';

axios.interceptors.request.use(function (config) { 
  // 這里的config包含每次請求的內容
  let token = window.sessionStorage.getItem('token')
  if (token) {
    // 添加headers
    config.headers.token = `${token}`;
    config.headers['content-type'] = 'application/x-www-form-urlencoded;charset=UTF-8';
  } else {}
  return config;
}, function (err) {
  return Promise.reject(err);
})

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM