1. 程式人生 > >axios post、get 請求引數和headers配置

axios post、get 請求引數和headers配置

         axios.post("http://xxx.com/xxx/xxx/xxx?",
                    {
                        'queslistid':this.kemuid
                    },
                    {
                        headers: {'token':Cookies.get('token'),'platform': 'web'}
                    }
                ).then((login)=>{

                    console.log(login)
})

 

 

          axios.get("http://xxx.com/xxx/xxx/xxx?",{
                        params:{id:this.kemuid},
                        headers:{token:Cookies.get('token'), platform: 'web'}
                    }).then((res)=>{
                        console.log(res)
                })