提问者:小点点

Ajax,无法从服务器加载PHP


我正在尝试建立 PHP 连接,但不断收到此错误。我希望有人能帮忙。

我的代码给出了以下错误:

{
    "readyState": 0,
    "status": 0,
    "statusText": "NetworkError: Failed to execute 'send' on 'XMLHttpRequest': Failed to load 'http://localhost/php/busca.php'."
}

我的代码是:

SendSQL.onclick = function() {

    var dataString='a=hello&b=world';

    $.ajax({
        type: "POST",
        url:"http://localhost/php/busca.php",
        data: dataString,
        async: false,
        dataType:'html',

        success: function(data){
                alert(data);
        },

        error: function(data){
            alert(JSON.stringify(data)); //Better diagnostics
        }
    });

};

而 busca.php 的文件是:

<?php
    $a = $_POST['a'];
    $b = $_POST['b'];
    echo "$a, $b";
?>

共2个答案

匿名用户

试试这种方法...

SendSQL.onclick = function() {

  var dataString='a=hello&b=world';

  $.ajax({
    type: "POST",
    url:"http://localhost/php/busca.php",
    data: {
      "a":"hello",
      "b":"world"
    },
    async: false,
    dataType:'text',
    success: function(data){
            alert(data);
    },
    error: function(data){
        console.log(data); 
    }
  });

};

匿名用户

您的dataString是发送GET请求参数的方式。

让我们改为JSON格式

var dataString = { "a":"hello", "b":"world" };
$.ajax({
        type: "POST",
        url:"http://localhost/php/busca.php",
        data: {data: JSON.stringify(dataString)},
        async: false,
        dataType:'json',

        success: function(data){
                alert(data);
        },

        error: function(data){
            alert(JSON.stringify(data)); //Better diagnostics
        }
    });

在php代码中,使用< code > JSON _ decode($ _ POST[' data '])