AI智能
改变未来

axios请求拦截器


axios请求拦截器

通过axios请求拦截器添加token,保证拥有获取数据的权限

// axios请求拦截器axios.interceptors.request.use(config => {// 为请求头对象,添加 Token 验证的 Authorization 字段config.headers.Authorization = window.sessionStorage.getItem(\'token\')// 在最后必须 return configreturn config})
赞(0) 打赏
未经允许不得转载:爱站程序员基地 » axios请求拦截器