使用YQL和jQuery提取数据

时间:2015-06-27 17:29:26

标签: javascript jquery yql

我使用YQL从atlatlsoftware.com上的div中提取基本信息。我需要找到地址,电话号码和电子邮件。

我当前的代码从YQL转换数据并将其作为JSON记录在控制台中。

var atlatlInfo = $.getJSON("https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20html%20where%20url%3D%22http%3A%2F%2Fatlatlsoftware.com%22%20and%0A%20%20%20%20%20%20xpath%3D'%2F%2F*%5B%40id%3D%22desktop-footer%22%5D%2Fdiv%5B3%5D%2Fdiv%2Ftable%2Ftbody%2Ftr%5B2%5D%2Ftd%5B1%5D'&format=json&diagnostics=true&callback=");

console.log(atlatlInfo);

通过在chrome控制台中键入atlatlInfo.responseJSON.query.results.td.div,我可以获得所需的数据。当我尝试执行console.log(atlatlInfo.responseJSON.query.results.td.div)时,我的chrome控制台出现了“undefined”。

如何使用javascript获取我需要使用的数据?

1 个答案:

答案 0 :(得分:0)

$.getJSON返回异步结果;调用atlatlInfo时可能未定义console.log(atlatlInfo);的位置;见How do I return the response from an asynchronous call?。尝试使用success的{​​{1}}回调来处理通过调用data

返回的$.getJSON

var atlatlInfo = $.getJSON("https://query.yahooapis.com/v1/public/yql?" 
                           + "q=select%20*%20from%20html%20where%20url%3D%22http%3A%2F%2Fatlatlsoftware.com%22%20and%0A%20%20%20%20%20%20xpath%3D" 
                           + "'%2F%2F*%5B%40id%3D%22desktop-footer%22%5D%2Fdiv%5B3%5D%2Fdiv%2Ftable%2Ftbody%2Ftr%5B2%5D%2Ftd%5B1%5D'" 
                           + "&format=json&diagnostics=true&callback="
                             // process results from asynchronous call here
                           , function success(data) {
                               // do stuff with results
                               console.log(data.query.results.td.div);
                 });
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js">
</script>