Bootstrap

axios get和post请求带参数和headers配置

post请求

const id = 'xxx';
const token = 'xxxxxxxxxxxxxxxxx';
axios.post("http://xxx/xxx",
//参数列表
    {
        'id': id
    },
//请求头配置   
    {
        headers: {'token':token }
    }
).then((res)=>{
    console.log(res)
})

get请求

const id = 'xxx';
const token = 'xxxxxxxxxxxxxxxxx';
axios.get("http://xxx/xxx",{
	//参数列表
       params:{ id: id},
    //请求头配置  
       headers:{ token: token }
    }).then((res)=>{
        console.log(res)
 })
;