dourao3960 2017-08-23 12:07
浏览 146
已采纳

Ajax - 使用jQuery发送对象数组

I am constructing an array of objects from form data in order to send to a processing script that will then send the data on to an API. The API does not allow CORS ajax requests, hence the need to send to an external script first.

I can return simple strings, but when I stringify the data I have, the response from the server is always that the POST or GET (have tried both) data is just an empty array.

JS

$('#enrol').submit(function(e) {
    e.preventDefault();

    var collection = [];

    $('#enrol .form-row').each(function() {
        var email = $(this).find('input[type="email"]').val();
        var c1Val = $(this).find('.c1').is(':checked') ? 'true' : 'false';
        var c2Val = $(this).find('.c2').is(':checked') ? 'true' : 'false';
        var c3Val = $(this).find('.c3').is(':checked') ? 'true' : 'false';
        var c4Val = $(this).find('.c4').is(':checked') ? 'true' : 'false';
        var c5Val = $(this).find('.c5').is(':checked') ? 'true' : 'false';
        var c6Val = $(this).find('.c6').is(':checked') ? 'true' : 'false';
        var c7Val = $(this).find('.c7').is(':checked') ? 'true' : 'false';

        var person = {
            'email'   : email,
            'course1' : c1Val,
            'course2' : c2Val,
            'course3' : c3Val,
            'course4' : c4Val,
            'course5' : c5Val,
            'course6' : c6Val,
            'course7' : c7Val,
        }
        collection.push(person);

    });

    var dataString = JSON.stringify(collection);

    $.ajax({
        url: 'http://www.example.com/script.php',
        data: dataString,
        crossDomain: true,
        success: function(response) {
            console.log(response);
        },
        error: function(response) {
            console.log(response);
            alert(response.responseText);
        }
    });
})

PHP

header("Access-Control-Allow-Origin: URLHERE");
header("Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept");

var_dump($_GET);

What I don't get is if I just JSON.stringify a simple string, I get the data returned, yet the array of objects seems to arrive at the php script as an empty array - or at least that's what the console.log is suggesting. I've outputted the dataString variable to ensure it has data - it does.

  • 写回答

3条回答 默认 最新

  • dourao1896 2017-08-24 11:00
    关注

    The solution was a simple one, I wasn't providing a key for the post array -

    data: dataString
    

    should have been

    data: { data: dataString }
    

    Then the output of var_dump($_GET['data')) contained the data I was sending.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
  • doufeng3602 2017-08-23 12:16
    关注

    i have something similar in my own project. This works for me:

    jsonObj = new Object();
    jsonObj['email'] = email;
    jsonObj['course1'] = c1Val;
    .
    .
    .
    
     $.ajax({
                type: 'POST',
                url: 'http://www.example.com/script.php',
                data: {"data": JSON.stringify(jsonObj)},
                dataType:'JSON',
                cache: false,
    .
    .
    .
    });
    

    PHP:

    var_dump($_REQUEST['data']);
    
    评论
  • duanchun1881 2017-08-23 12:22
    关注

    PHP will not automatically fill the superglobals $_GET and $_POST when the data arrives in JSON format. You'll need to do two things on the PHP side:

    1. Manually capture the input
    2. JSON-decode it into a PHP data structure

      // capture your raw JSON
      $datastring = file_get_contents("php://input");
      // decode it into a PHP array
      $collectionArray = json_decode($datastring, true);
      

    On the jQuery side, the following may not be needed, but I would be explicit about the type of content sent to the server:

    $.ajax({
        url: 'http://www.example.com/script.php',
        data: dataString,
        contentType : "application/json",
        ...
    
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 python 3des pyDes库
  • ¥15 关于#mysql#安装失败的问题。MySQL
  • ¥15 想问一下for循环计算表达式的方法,第一次接触
  • ¥15 如何在VA框架上面加功能,去读取框架内任何app数据功能
  • ¥15 关于#c语言#的问题:用c或c++写一个计算下列问题有关软件工程的代码并加上分析
  • ¥15 Zeppelin0.10.0版本升级lib包下的shiro-web
  • ¥15 链表入队的指针内存问题
  • ¥20 vba如何写本地html文件执行js
  • ¥15 VS2022的C#如何创建
  • ¥20 关于#用户注册#的问题,如何解决?