美文网首页工作生活
Mako中配置axios后端Token

Mako中配置axios后端Token

作者: kentlin | 来源:发表于2019-07-04 10:25 被阅读0次

将下面代码添加到base.html的script标签的全局配置中

axios.interceptors.request.use(config => {
        config.headers['X-Requested-With'] = 'XMLHttpRequest';
        let CSRFTokenLi = document.cookie.split('; ').find(v => v.match(/^csrftoken=([^;.]*).*$/))
        config.headers['X-CSRFToken'] = CSRFTokenLi ? CSRFTokenLi.split('=')[1] : ''
        return config
});
axios.interceptors.response.use(response => {
         return response.data
})

相关文章

网友评论

    本文标题:Mako中配置axios后端Token

    本文链接:https://www.haomeiwen.com/subject/qmclhctx.html