axios的基本使用步骤如下:
1. 安装axios。
npm install axios --save
2. 导入axios
3. 使用:axios返回的是promise,因此请求成功会调用then
axios({ url: ‘http://httpbin.org/‘, method: ‘get‘ }).then(res => { console.log(res) })
4. 打印结果:
2021-07-27 01:19:54
axios的基本使用步骤如下:
1. 安装axios。
npm install axios --save
2. 导入axios
3. 使用:axios返回的是promise,因此请求成功会调用then
axios({ url: ‘http://httpbin.org/‘, method: ‘get‘ }).then(res => { console.log(res) })
4. 打印结果: