您的当前位置:首页正文

怎样使用AngularJS内$http服务Post方法传递json参数

2020-11-27 来源:个人技术集锦
这次给大家带来怎样使用AngularJS内$http服务Post方法传递json参数,使用AngularJS内$http服务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));

最终发送的请求是:

相信看了本文案例你已经掌握了方法,更多精彩请关注Gxl网其它相关文章!

推荐阅读:

如何实现jQuery上传图片本地预览

如何使用vue axios进行请求拦截

显示全文