使用 jQuery 异步加载外部图像
我遇到以下情况:
我需要加载由第 3 方托管的多个外部图像,示例网址如下;http://externaldomain.com/img/a/b/someimage.jpg
然而,加载 1 张图像可能需要长达 15 秒的时间! (我知道这很疯狂),所以我想使用 jQuery 异步加载这些图像。这就是我陷入困境的地方,我尝试了以下两种方法:
var img = new Image();
$(img).load(function () {
containerForImg.removeClass('loading-image').append(this);
})
.attr('src', imgFullPath)
.attr('alt', imgAltText);
我认为上面的代码不会异步加载图像,因为请求在完成之前一直等待所有图像。
第二种方法:
我创建了一个通用处理程序 (.ASHX),用于使用 .NET 中的 WebRequest
和 WebResponse
类下载图像,并使用 $.ajax()< 调用此处理程序/code> jQuery 方法,但是如果有大量图像,这会导致屏幕无响应。我可以确认对处理程序的请求是异步的,但是我很好奇处理程序内部的调用是否是异步的。
结论是,这两种方法都没有给我最好的结果。那么,异步加载外部图像的最佳方法是什么?我不仅限于使用 jQuery,纯 ASP.NET 解决方案就可以了。
I have the following situation:
I need to load several external images hosted by 3rd party, with example url like this;
http://externaldomain.com/img/a/b/someimage.jpg
however loading 1 image can cost up to 15 secs!! (crazy I know), so I'm thinking to load these images asynchronously using jQuery. Here's where I'm stuck, I have tried the following 2 methods:
var img = new Image();
$(img).load(function () {
containerForImg.removeClass('loading-image').append(this);
})
.attr('src', imgFullPath)
.attr('alt', imgAltText);
Which I think the code above will not load the image asynchronously because the request keeps waiting for all the images before it gets complete.
The second method is:
I created a generic handler (.ASHX) to download the image using WebRequest
and WebResponse
class from .NET and the call this handler with $.ajax()
jQuery method, but this result in the screen being unresponsive if there are a lot of image. I can confirm that the request to the handler is asynchronous, however I'm curious as whether the call inside the handler is asynchronous or not.
The conclusion is, both methods don't give me the best result. So, what is the best way to load external image asynchronously? I'm not limited only to use jQuery, a pure ASP.NET solution is fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定 jquery 的 .load() 函数是否设计用于 Image() 对象。不过,您可以自己完成,只需很少的工作:
I'm not sure that jquery's .load() function is designed to be used on Image() objects. You can do it yourself with very little work, however: