📜  如何使用 axios 在反应中验证令牌 - Javascript 代码示例

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

代码示例1
const api = `your api here`
axios.get(api, { headers: {"Authorization" : `Bearer ${token}`} })
        .then(res => {
            console.log(res.data);
        this.setState({
            items: res.data,  /*set response data in items array*/
            isLoaded : true,
            redirectToReferrer: false
        })