使用 jQuery 解析实时流 HTTP 分块传输 JSON?

发布于 2024-11-05 14:21:13 字数 511 浏览 5 评论 0原文

以下是使用分块传输编码传递流式 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

永不分离 2024-11-12 14:21:13

由于同源政策,您无法发出跨域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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文