axios发送封装的get请求并携带params
时间: 2023-08-17 18:15:58 浏览: 98
要使用封装的axios发送get请求并携带params参数,你可以按照以下步骤进行操作:
1. 在需要的组件中导入封装的axios:`import Axios from './request/axios';`
2. 在发送请求的函数中使用axios的get方法,并传递参数params:
```javascript
Axios.get('http://localhost:9090/user/login', {
params: {
account: this.formLogin.account,
password: this.formLogin.password,
testParam: 'hello world'
}
}).then(res => {
// 处理响应数据
}).catch(error => {
// 处理错误
});
```
请注意,这里的`this.formLogin.account`、`this.formLogin.password`和`'hello world'`是示例参数,你需要根据实际情况替换成你要发送的参数。
这样就可以使用封装的axios发送get请求并携带params参数了。
#### 引用[.reference_title]
- *1* *2* [vue3中封装Axios请求](https://blog.csdn.net/weixin_52797441/article/details/126979875)[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^v91^koosearch_v1,239^v3^insert_chatgpt"}} ] [.reference_item]
- *3* [Vue使用axios发送get请求并携带参数](https://blog.csdn.net/weixin_46713508/article/details/128839202)[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^v91^koosearch_v1,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文