使用JQuery,AJAX和php创建JSON数据

时间:2015-12-16 16:56:08

标签: php jquery json ajax

我试图以JSON格式从我的数据库中获取数据,但我得到的是下图中的数据。

enter image description here

我正在使用此代码:

$("#priorityPieForm").submit(function(event) {
  var data = {};
  data = $(this).serialize();
  event.preventDefault();
  $.ajax({
    type: "POST",
    dataType: "json",
    url: "dataFiles/priorityPie_data.php",
    data: data,
    success: function(data) {
      priorityPieData = $.parseJSON(data["queryReturn"]);
      alert(priorityPieData);
      makePriorityPie(theme);
    }
  });
});

1 个答案:

答案 0 :(得分:0)

您应该可以执行以下操作:

$.ajax({
    type: "POST",
    dataType: "json",
    url: "dataFiles/priorityPie_data.php",
    data: data,
    success: function(data) {

      // Open your developer tools (F12) to see the the json data
      console.log(data);

      priorityPieData = data.foo;

      makePriorityPie(priorityPieData);
    }
  });
});