14

以下$http request代码成功执行,但另一端的 PHP 脚本在$_POST应接收“test”和“testval”时接收到一个空数组。有任何想法吗?

$http({
    url: 'backend.php',
    method: "POST",
    data: {'test': 'testval'},
    headers: {'Content-Type': 'application/x-www-form-urlencoded'}
    }).success(function (data, status, headers, config) {
    console.log(data);

    }).error(function (data, status, headers, config) {});
4

5 回答 5

18

如果您只想发送简单的数据,请尝试以下操作:

$http({
    url: 'backend.php',
    method: "POST",
    data: 'test=' + testval,
    headers: {'Content-Type': 'application/x-www-form-urlencoded'}
    }).success(function (data, status, headers, config) {
        console.log(data);

    }).error(function (data, status, headers, config) {});

而 php 部分应该是这样的:

<?php
    $data = $_POST['test'];
    $echo $data;
?>

它对我有用。

于 2014-01-06T13:32:44.380 回答
7

这是 AngularJS 的常见问题。

第一步是更改POST请求的默认内容类型标头:

$http.defaults.headers.post["Content-Type"] = 
    "application/x-www-form-urlencoded; charset=UTF-8;";

然后,使用XHR 请求拦截器,有必要正确序列化有效负载对象:

$httpProvider.interceptors.push(['$q', function($q) {
    return {
        request: function(config) {
            if (config.data && typeof config.data === 'object') {
                // Check https://gist.github.com/brunoscopelliti/7492579 
                // for a possible way to implement the serialize function.
                config.data = serialize(config.data);
            }
            return config || $q.when(config);
        }
    };
}]);

这样,有效负载数据将再次在$_POST数组中可用。

有关XHR 拦截器的更多信息。

另一种可能性是保留默认的内容类型标头,然后服务器端解析有效负载:

if(stripos($_SERVER["CONTENT_TYPE"], "application/json") === 0) {
    $_POST = json_decode(file_get_contents("php://input"), true);
}
于 2013-11-20T17:33:30.547 回答
7

更简化的方式:

myApp.config(function($httpProvider) {
    $httpProvider.defaults.transformRequest = function(data) {        
        if (data === undefined) { return data; } 
        return $.param(data);
    };
    $httpProvider.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded; charset=UTF-8'; 
});
于 2014-07-17T13:23:01.793 回答
3

删除以下行和前面的逗号:

headers: {'Content-Type': 'application/x-www-form-urlencoded'}

然后数据将出现在 $_POST 中。如果您要上传文件,则只需要该行,在这种情况下,您必须解码正文以获取数据变量。

于 2013-10-06T21:04:53.643 回答
2

我在这里找到了我的解决方案http://www.peterbe.com/plog/what-stumped-me-about-angularjs。“AJAX 不像 jQuery 那样工作”部分中有一段代码,解决了我的问题。

于 2014-02-17T10:02:59.143 回答