Ajax调用json请求

时间:2015-12-06 13:46:08

标签: php jquery json ajax request

我可以使用Ajax调用来获取此JSON请求吗?我想从这个请求中获取一些值。如果我能做什么我该怎么办?

我的要求:

GET https://www.googleapis.com/customsearch/v1?q=test&cref=AIzaSyAreDhTh3IqaGPqC44t08sQF_qbSGzzA7Q&cx=010855067127206535986%3Aqdh_vhglb4u&fileType=jpg&filter=1&imgSize=medium&imgType=news&num=4&searchType=image&start=1&key={YOUR_API_KEY}

1 个答案:

答案 0 :(得分:0)

您使用AJAX获取任何请求,请查看所有可用方法的documentation,但您需要使用jQuery.Ajax()

以下是一个例子:

// There are a multitude of options that can passed in here
var req = $.ajax({
    method: "GET",
    url: // ...Your Long URL ,
});

// use the returned promises
req.done(function( msg ) {
    alert( "Data Saved: " + msg );
});

// if it was unsuccessful
req.fail(function( jqXHR, textStatus ) {
    alert( "Request failed: " + textStatus );
});

文档很广泛,看一看,你应该能够相对轻松地完成这些工作。