vue使用axios发get请求
时间: 2023-09-20 19:08:33 浏览: 119
在Vue中使用axios发起GET请求的代码如下:
```javascript
import axios from 'axios'
axios.get('/api/get', {
params: {
name: '嬴政',
age: 45
}
}).then((response) => {
console.log(response);
console.log(response.data);
this.resData = response.data;
}).catch((error) => {
console.log(error);
});
```
以上代码中,我们首先通过`import axios from 'axios'`语句引入了axios库。然后使用`axios.get`方法来发送GET请求,传递的参数通过`params`属性来指定,这些参数会作为查询参数附加在请求的URL后面。接着我们可以在`then`回调函数中对响应结果进行处理,通过`response.data`可以获取到服务器返回的数据。如果请求出现错误,可以在`catch`回调函数中对错误进行处理。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [vue-axios的使用及其get与post网络请求](https://blog.csdn.net/qq_41115965/article/details/80780264)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文