使用Post方法传递json参数有哪些方式
程序员文章站
2022-04-10 18:03:09
...
这次给大家带来使用Post方法传递json参数有哪些方式,使用Post方法传递json参数的注意事项有哪些,下面就是实战案例,一起来看一下。
具体如下:
一、$http POST方法默认提交数据的类型为application/json
var data = {'wid':'0', 'praise' : '25'}; $http.post(url, data).success(function(result) { // });
最终发送的请求是:
POST http://www.example.com HTTP/1.1 Content-Type: application/json;charset=utf-8 {'wid':'0','praise':'25'}
默认的这种方式可以直接将json对象以字符串的形式传递到服务器中,比较适合 RESTful 的接口。但是php脚本的$_POST无法从请求体中获得json数据。
此时可以用:
$data = file_get_contents("php://input"); //获得原始输入流
注:enctype="multipart/form-data" 的时候 php://input 是无效的
获得请求原始输入流之后再做相应处理就可以获得json数据了。
二、 采用x-www-form-urlencoded 方式提交获得json数据
app.factory("Comment",function($http){ return { get : function(commentFileUrl) { return $http({ method: "GET", url: commentFileUrl, params: {R:Math.random()}, headers: {'Cache-Control':'no-cache'} }); }, //保存一个评论 save : function(toUrl,saveFileUrl,Data) { $http({ method: "POST", url: toUrl, data: {saveUrl:saveFileUrl,commit:Data}, headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, transformRequest: function(obj) { var str = []; for (var p in obj) { str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p])); } return str.join("&"); } }).success(function(data){ console.log("数据已保存!"); }).error(function(data) { alert("数据保存失败,错误信息:" + JSON.stringify({data:data})); }); } } }); var updateClickRate={'wid':'0','click_rate':'87'}; Comment.save("php/updateWork.php","../userdata/work_content.json",JSON.stringify(updateClickRate));
最终发送的请求是:
相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!
推荐阅读:
以上就是使用Post方法传递json参数有哪些方式的详细内容,更多请关注其它相关文章!
上一篇: vue axios实现请求拦截步骤详解
下一篇: JS使用时有哪些混淆点
推荐阅读
-
C#使用Http Post方式传递Json数据字符串调用Web Service
-
C#使用Http Post方式传递Json数据字符串调用Web Service
-
php post json参数的传递和接收处理方法
-
AngularJS下$http服务Post方法传递json参数的实例
-
Node第3天知识点:在node当中使用art-template、处理GET方式传递的参数、处理POST方式传递数据、服务器端重定向、模块化
-
requests.post()方法中data和json参数的使用
-
使用微信小程序有关传参数的方法,有哪些?
-
AngularJS使用Post方法传递json参数的思路(附代码)
-
AngularJS下$http服务Post方法传递json参数的实例
-
web开发N例-案例3:使用post和get方法在php和html间传递参数