Vue axios 发送 get 和 post 请求
程序员文章站
2022-07-02 15:29:50
...
发送 get 请求
this.axios.get('/rebar/produceTask/selectProProduceTaskItemList',{params:data}).then( res => {
console.log('发送get请求')
})
发送 post 请求,使用 this.qs.stringify() 传参需要安装 qs,使用方法请查看博客
getDataList() {
var data={
name:this.queryInfo.name,
page:this.queryInfo.page,
rows:this.queryInfo.rows,
projectId:this.projectId,
sectId:this.sectId,
}
this.axios.post('/rebar/material/selectMaterialList',this.qs.stringify(data)).then( res => {
console.log('发送post请求')
})
},
上一篇: axios 发送get post请求
下一篇: axios发送Post和get请求
推荐阅读
-
Android发送GET与POST请求的DEMO详解
-
vue 2.x 中axios 封装的get 和post方法
-
微信小程序授权 获取用户的openid和session_key【后端使用java语言编写】,我写的是get方式,目的是测试能否获取到微信服务器中的数据,后期我会写上post请求方式。
-
Vue resource中的GET与POST请求的实例代码
-
Vue axios全局拦截 get请求、post请求、配置请求的实例代码
-
vuejs使用axios异步访问时用get和post的实例讲解
-
VUE axios发送跨域请求需要注意的问题
-
axios发送post请求,提交图片类型表单数据方法
-
PHP get和post向服务器发送请求
-
Scrapy中的POST请求发送和递归爬取