AI智能
改变未来

Axios.post 和.get 请求参数 和headers配置


.get

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

.post

axios.post(\"http://xxx.com/xxx/xxx/xxx?\",{\'queslistid\':this.kemuid},{headers: {\'token\':Cookies.get(\'token\'),\'platform\': \'web\'}}).then((login)=>{console.log(login)})
赞(0) 打赏
未经允许不得转载:爱站程序员基地 » Axios.post 和.get 请求参数 和headers配置