如何重写代码以便我可以使用从test2.php
?
function drawChart4() {
var jsonData = $.ajax({
url: "/master/test2.php?zoekopdracht=ceremonie",
dataType: "json",
async: false
}).responseText;
var object = $.parseJSON(jsonData);
答案 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库,您的代码暗示了这一点。