我无法使用javascript设置简单的html文件来显示YQL查询的结果。
我理解如何在YQL控制台中设置select语句(例如:从search.web中选择title,abstract,url,其中query =“pizza”)。但我不知道如何在html文件中显示它?
有人可以帮忙解释如何显示该陈述的结果吗? 代码片段将不胜感激!
是的,我已经阅读了YQL文档,但它们有点复杂。答案 0 :(得分:8)
通过客户端JavaScript检索YQL结果的唯一方法是JSON-P(或使用其他代理)。这是YQL服务的包装器:
function YQLQuery(query, callback) {
this.query = query;
this.callback = callback || function(){};
this.fetch = function() {
if (!this.query || !this.callback) {
throw new Error('YQLQuery.fetch(): Parameters may be undefined');
}
var scriptEl = document.createElement('script'),
uid = 'yql' + +new Date(),
encodedQuery = encodeURIComponent(this.query.toLowerCase()),
instance = this;
YQLQuery[uid] = function(json) {
instance.callback(json);
delete YQLQuery[uid];
document.body.removeChild(scriptEl);
};
scriptEl.src = 'http://query.yahooapis.com/v1/public/yql?q='
+ encodedQuery + '&format=json&callback=YQLQuery.' + uid;
document.body.appendChild(scriptEl);
};
}
<强>用法:强>
// Construct your query:
var query = "select * from rss where url='somefeed.com' limit 1";
// Define your callback:
var callback = function(data) {
var post = data.query.results.item;
alert(post.title);
};
// Instantiate with the query:
var firstFeedItem = new YQLQuery(query, callback);
// If you're ready then go:
firstFeedItem.fetch(); // Go!!
更多信息: http://james.padolsey.com/javascript/using-yql-with-jsonp/
答案 1 :(得分:2)
这是一个小例子。我使用YQL网站制作了它:
<html>
<head>
</head>
<body>
<script>
function top_stories(o){
// parse through the output here:
var items = o.query.results.item;
// do whatever you want with the output here:
console.log(items[0].title);
}
</script>
<script src='http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20rss%20where%20url%3D%22http%3A%2F%2Frss.news.yahoo.com%2Frss%2Ftopstories%22&format=json&diagnostics=false&callback=top_stories'></script>
</body>
</html>
所有这一切都得到了雅虎首页的第一篇新闻报道