javascript 中的 WOEID 天气预报(使用 YQL 或 rss)?
有没有办法从 javascript 中的 woeid 获取天气预报?
我尝试使用 yahoo 的 rss feed,但无法使其工作。这是我的代码
var url = "http://weather.yahooapis.com/forecastrss?w=" + encodeURIComponent('WOEID here');
$.ajax({
url: url,
dataType: 'jsonp',
jsonpCallback: function(data) { console.log(data); },
success: function(data) { alert("success"); }
});
有什么建议吗?
Is there any way of getting the weather forecast from woeid in javascript?
I tried using rss feed of yahoo, but couldn't get it to work. here is my code
var url = "http://weather.yahooapis.com/forecastrss?w=" + encodeURIComponent('WOEID here');
$.ajax({
url: url,
dataType: 'jsonp',
jsonpCallback: function(data) { console.log(data); },
success: function(data) { alert("success"); }
});
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
以下是使用 jQuery 和 YQL 获取所需信息的最简单方法:
YQL中的查询console...
jsfiddle 中的 JavaScript 代码...
Here's the simplest way to get the info you want using jQuery and YQL:
The query in the YQL console...
The JavaScript code in jsfiddle...
显然,Weather API 以
RSS
格式返回结果,而您的函数期望以jsonp
格式返回结果。考虑使用 Yahoo!通过管道 为您获取天气RSS
feed,对其进行处理,并以jsonp
格式返回。这是一个执行类似操作的管道:
http://pipes.yahoo.com/pipes/pipe.info?_id=4d160cd8ed9d6d78164213928a51507d
Apparently, the Weather API returns its results in
RSS
format, while your function is expecting them injsonp
format. Consider using Yahoo! Pipes to fetch the weatherRSS
feed for you, process it, and return it injsonp
format.Here's a pipe that does something similar:
http://pipes.yahoo.com/pipes/pipe.info?_id=4d160cd8ed9d6d78164213928a51507d
正如龙建议的那样,我创建了一个雅虎管道 - 这是我的完整代码;代码中的 url 是我创建的 Yahoo Pipe。
参考资料:
雅虎管道: http://pipes.yahoo.com/pipes/pipe.info?_id=e33143abd20b19a0173b3a4b479fa4d3
jQuery 1.5 - JSON 错误无效标签
As dragon suggested, I created a Yahoo Pipe - here is my complete code; the url in the code is the Yahoo Pipe I created.
references:
Yahoo Pipe: http://pipes.yahoo.com/pipes/pipe.info?_id=e33143abd20b19a0173b3a4b479fa4d3
jQuery 1.5 - JSON error invalid label