vue axios.get()
时间: 2024-01-26 08:14:02 浏览: 73
vue + axios get下载文件功能
5星 · 资源好评率100%
以下是使用Vue中的axios进行GET请求的示例代码:
```javascript
import axios from 'axios';
axios.get('/api/student/student/getAllStudent')
.then(res => {
console.log(res);
})
.catch(err => {
console.log(err);
});
```
在这个例子中,我们首先导入axios库。然后,我们使用axios.get方法发送GET请求到指定的URL(在这里是`/api/student/student/getAllStudent`)。当请求成功时,我们打印出响应结果;当请求失败时,我们打印出错误信息。
请注意,我们在main.js中添加了`Vue.prototype.HOST = '/api';`这一行代码,它将我们的请求URL前缀设置为`/api`,以便实现跨域请求。
阅读全文