浅谈axios中的get,post方法介绍
程序员文章站
2022-03-14 18:21:32
...
下面小编就为大家带来一篇简单谈谈axios中的get,post方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
学习vue和nodejs的过程当中,涉及到了axios,今天为了测试,写了get和post两个方法来跟node服务端交互,结果因为header和参数弄了好久,在此记录一下,同时分享;
由于刚接触axios,在测试方法中,写的都是很简单的东西,不过能够实现基础功能,大神看到的话..非常欢迎指导..
//GET方法 axios.get(url, { params: { 'key': 'value' } }).then(function (response) { alert(''.concat(response.data, '\r\n', response.status, '\r\n', response.statusText, '\r\n', response.headers, '\r\n', response.config)); }).catch(function (error) { alert(error); }); //对应服务端获取数据 const urlModule = require('url'); let params = urlModule.parse(request.url, true).query;//解析数据 获得Json对象 let value = params.key;//通过参数名称获得参数值 //POST方法 var params = new URLSearchParams(); params.append('key', 'value'); axios.post(url, params).then(function (response) { alert(''.concat(response.data, '\r\n', response.status, '\r\n', response.statusText, '\r\n', response.headers, '\r\n', response.config)); }).catch(function (error) { alert(error); }); //对应服务端获取数据 const queryStringModule = require('querystring'); let postData = ''; request.on('data', function (chunk) { postData += chunk;//接收数据 }); let params = queryStringModule.parse(postData);//解析数据 获得Json对象 let value = params.key;//通过参数名称获得参数值
此种写法猜测应该只是一种比较简单的实现,希望能够帮到其他人,同时希望高手指教。
以上就是浅谈axios中的get,post方法介绍的详细内容,更多请关注其它相关文章!
推荐阅读
-
php中运用http调用的GET和POST方法示例,getpost
-
jquery中get,post和ajax方法的使用小结_jquery
-
爬虫(二)requests模块---requests的基本使用,requests中的get和post方法详解,代理的基本原理
-
PHP中curl实现Get和Post请求的方法
-
PHP中curl实现Get和Post请求的方法
-
php中运用http调用的GET和POST方法示例_PHP
-
java web学习_浅谈request对象中get和post的差异
-
浅谈IOS中AFNetworking网络请求的get和post步骤
-
php中$_GET与$_POST过滤sql注入的方法
-
vue 2.x 中axios 封装的get 和post方法