### axios的get請求方法
axios.request({
methods:"GET",
url:"xxxxxxxxx",//這是請求的地址
}).then((response){
console.log(response);
})
#### axios的post請求方法
axios.post("url",{
body:"",
postId:"xxxx",
}).then((resoponse)=>{
console.log(response)
})