AngularJS $http post 传递参数数据的方法
程序员文章站
2022-06-08 22:58:48
在cordova开发的时候使用到了$http的post方法,传递的参数服务端怎么都接收不到,搜索了下,发现使用angularjs通过post传递参数还是需要设置一些东西才可...
在cordova开发的时候使用到了$http的post方法,传递的参数服务端怎么都接收不到,搜索了下,发现使用angularjs通过post传递参数还是需要设置一些东西才可以!
1、不能直接使用params
例如:
$http({ method: "post", url: "http://192.168.2.2:8080/setid", params: { cellphoneid: "b373fed6be325f7"} }).success();
当你这样写的时候它会把id写到url后面:
http://192.168.2.2:8080/setid?cellphoneid=b373fed6be325f7"
会在url后面添加"?cellphoneid=b373fed6be325f7",查了些资料发现params这个参数是用在get请求中的,而post/put/patch就需要使用data来传递;
2、直接使用data
$http({ method: "post", url: "http://192.168.2.2:8080/setid", data: { cellphoneid: "b373fed6be325f7" } }).success();
这样的话传递的,是存在于request payload中,后端无法获取到参数
这时发现content-type:application/json;charset=utf-8,而post表单请求提交时,使用的content-type是application/x-www-form-urlencoded,所以需要把content-type修改下!
3、修改content-type
$http({ method: "post", url: "http://192.168.2.2:8080/setid", data: {cellphoneid: "b373fed6be325f7"}, headers: { 'content-type': 'application/x-www-form-urlencoded' } }).success();
这时数据是放到了form data中但是发现是以对象的形式存在,所以需要进行序列化!
4、对参数进行序列化
$http({ method: "post", url: "http://192.168.2.2:8080/setid", data: {cellphoneid: "b373fed6be325f7"}, headers: { 'content-type': 'application/x-www-form-urlencoded' }, transformrequest: function(obj) { var str = []; for (var s in obj) { str.push(encodeuricomponent(s) + "=" + encodeuricomponent(obj[s])); } return str.join("&"); } }).success();
以上这篇angularjs $http post 传递参数数据的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
推荐阅读
-
Angularjs中$http以post请求通过消息体传递参数的实现方法
-
JSP页面中文参数的传递(get和post方法分析)
-
php post json参数的传递和接收处理方法
-
解决angular的$http.post()提交数据时后台接收不到参数值问题的方法
-
AngularJS下$http服务Post方法传递json参数的实例
-
Java中构造方法、空指针异常现象、基本数据类型和引用数据类型作为参数传递的区别
-
SpringMVC入门(二)—— 参数的传递、Controller方法返回值、json数据交互、异常处理、图片上传、拦截器
-
AngularJS入门教程二:在路由中传递参数的方法分析
-
AngularJs的$http发送POST请求,php无法接收Post的数据问题及解决方案
-
Node第3天知识点:在node当中使用art-template、处理GET方式传递的参数、处理POST方式传递数据、服务器端重定向、模块化