如何摆脱同步XHTML请求?

时间:2015-06-13 18:01:42

标签: php ajax json

如何重写代码以便我可以使用从test2.php

检索到的JSON数据
function drawChart4() {
    var jsonData = $.ajax({
        url: "/master/test2.php?zoekopdracht=ceremonie",
        dataType: "json",
        async: false
    }).responseText;

    var object = $.parseJSON(jsonData);

1 个答案:

答案 0 :(得分:1)

你的问题不是很清楚,但也许这就是你要找的东西:

$.ajax({
    url: "/master/test2.php?zoekopdracht=ceremonie",
    dataType: "json"
}).done(function(jsonData){
    // do something with the data
    console.log(jsonData);
}).fail(function(){
    // react on error
    console.log("Whoops, that failed!");
});

这假设您在客户端使用jQuery JS库,您的代码暗示了这一点。