如何在php中显示来自javascript XMLHttpRequest()的POST值

时间:2015-07-03 14:46:18

标签: javascript php jquery ajax json

我使用XMLHttpRequest()javascript函数将参数发送到Json formate中的另一个php页面,但$ _POST ['appoverGUID']没有获得帖子值。

这是我的Javascript代码。

        function loadPage(href){

            var http = new XMLHttpRequest();
            var url = json.php;
            var approverGUID = "Test";
            var params = JSON.stringify({ appoverGUID: approverGUID });
            http.open("POST", url, true);
            http.setRequestHeader("Content-type", "application/json; charset=utf-8");
            http.setRequestHeader("Content-length", params.length);
            http.setRequestHeader("Connection", "close");
             http.onreadystatechange = function() {
                if(http.readyState == 4 && http.status == 200) {
                    document.getElementById('bottom').innerHTML = http.responseText;

                }
            } 
            http.send(params);

        }

这是我的 json.php 文件代码。

if(isset($_POST['appoverGUID'])){
echo $_POST['appoverGUID'];
}

3 个答案:

答案 0 :(得分:0)

您需要使用json_decode。有人喜欢这样:

if ("application/json" === getallheaders())
    $_JSON = json_decode(file_get_contents("php://input"), true) ?: [];

答案 1 :(得分:0)

以这种方式填写params(没有转发/编译approverGUID内容,这里......):

params = "appoverGUID="+approverGUID;

另见:

http://www.openjs.com/articles/ajax_xmlhttp_using_post.php

答案 2 :(得分:0)

首先删除这些标题,因为它们将由浏览器自动发送,并且是正确的方式。

http.setRequestHeader("Content-length", params.length);
http.setRequestHeader("Connection", "close");

此代码是一种跨浏览器解决方案,已经过测试。

// IE 5.5+ and every other browser
var xhr = new(window.XMLHttpRequest || ActiveXObject)('MSXML2.XMLHTTP.3.0');
var params = "appoverGUID="+approverGUID;
xhr.open("POST", url, true);

xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded; charset=UTF-8");
xhr.setRequestHeader("Accept", "application/json");
xhr.onreadystatechange = function () {
    if (this.readyState === 4) {
        if (this.status >= 200 && this.status < 400) {
            console.log(JSON.parse(this.responseText));
        }
    }
}
xhr.send(params);
xhr = null;