AngularJS $http模块POST请求实现

前端之家收集整理的这篇文章主要介绍了AngularJS $http模块POST请求实现前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

一、代码如下:

method:'post',url:'post.PHP',data:{name:"aaa",id:1,age:20}

}).success(function(req){

console.log(req);

})

解决方案:

1、

myApp.config(function($httpProvider){

$httpProvider.defaults.transformRequest = function(obj){

var str = [];

for(var p in obj){

str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));

}

return str.join("&");

2.

method:'post',age:20},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(req){

console.log(req);

})

PHP

PHP;"> $rawpostdata = file_get_contents("PHP://input"); $post = json_decode($rawpostdata,true); //传的数据都在$post中了;

二、 $http请求数据主要会有以下三种方式

1.get请求

2.post请求

3.jsonp

<Meta charset="UTF-8"> Angular基础
名: 姓名:
PHP;"> PHP //postData.PHP文件

//用接收json数据的方式
$msg=file_get_contents("PHP://input",true);

$name=$_GET['name'];
echo $name.$msg."_post";

显示效果

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/js/40115.html

猜你在找的JavaScript相关文章