Axios API get请求实例
时间: 2023-08-10 13:21:43 浏览: 74
ajax请求例子
好的,以下是Axios API执行GET请求的示例:
```javascript
axios.get('/user?ID=12345')
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
```
这个示例中,我们向`/user`端点发送了一个GET请求,具有查询参数`ID=12345`。如果请求成功,`then`回调函数将打印响应数据。如果请求失败,`catch`回调函数将打印错误信息。你可以将端点URL替换为你要访问的URL,以执行你自己的GET请求。
阅读全文