合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
**这里主要是axios的使用说明** #### 安装 使用npm安装: ~~~ npm install axios ~~~ 使用bower安装: ~~~ bower install axios ~~~ 使用cdn: ~~~ <script src="https://unpkg.com/axios/dist/axios.min.js"></script> ~~~ #### 例子 使用get请求: ~~~ axios.get('/user', { params: { id = 123 } }).then((res) => { console.log(res.data); }).catch((err) => { console.log(err) }) ~~~ 使用post请求: ~~~ axios.get('/user', { id = '123', name = 'yang' }).then((res) => { console.log(res.data); }).catch((err) => { console.log(err) }) ~~~