使用 jQuery 解析实时流 HTTP 分块传输 JSON?
以下是使用分块传输编码传递流式 JSON 对象的实时 HTTP 流: http://stream.meetup.com/ 2/rsvps
是否可以使用 jQuery getJSON 解析此 JSON 请求?我想获取每个项目,并在图像中插入新的图像标签。就像我下面写的函数,但不起作用
$.getJSON("http://stream.meetup.com/2/rsvps", displayImages);
函数显示图像(数据){
$.each(data.results, 函数(i,item) {
$("<img/>").attr("src", item.member.photo).appendTo('#images');
});
}
Here is live HTTP stream that delivers streaming JSON objects using chunked transfer encoding: http://stream.meetup.com/2/rsvps
Is it possible to parse this JSON request using jQuery getJSON ? I want to get each item as it comes in and insert new image tag with the image. Like the function I wrote below, but doesn't work
$.getJSON("http://stream.meetup.com/2/rsvps", displayImages);
function displayImages(data) { $.each(data.results, function(i,item) {
$("<img/>").attr("src", item.member.photo).appendTo('#images'); });
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于同源政策,您无法发出跨域ajax请求。您可以使用 JSONP 来回避该问题,但 Web 服务需要支持它。
看起来 Meetup API 支持 JSONP,尽管 JSONP 自然无法处理流式传输 -风格更新。
You cannot make cross-domain ajax requests due to the same origin policy. You can use JSONP to sidestep the problem, but the web service needs to support it.
It looks like the Meetup API supports JSONP, though naturally JSONP can't handle streaming-style updates.