使用 GWT RPC 显示存储为 blob 的图像

发布于 2024-09-02 11:33:30 字数 96 浏览 3 评论 0原文

我想使用 RPC 在 GWT 渲染页面中显示以 Blob 形式存储的图像。我不想使用 servlet,因为加载图像是同步的,如果我有很多图像可能会减慢页面加载时间。有什么想法吗?

I'd like to display images I've stored as Blobs in a GWT rendered page using RPC. I don't want to use a servlet because then loading the images is synchronous, and if I have many images can slow down the page load times. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

潇烟暮雨 2024-09-09 11:33:30

使用 Servlet 是提供图像的最佳方式。浏览器不会阻止图像下载。相反,他们开始在并行线程中下载图像和其他资源(之前限制为 2 个线程,但较新的浏览器放宽了该限制)。

Using a Servlet is the best way to serve images. Browsers do not block on image downloads. On the contrary, they start downloading images and other resources in parallel threads (it was earlier restricted to 2 threads, but newer browsers have relaxed that limit).

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