如何限制UIWebview下载图片?

发布于 2024-11-04 20:53:35 字数 48 浏览 0 评论 0原文

如何限制 UIWebView 不下载任何类型的图像?

问候, 约翰

How can i restrict UIWebView not to download any type of images?

Regards,
John

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

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

发布评论

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

评论(1

独行侠 2024-11-11 20:53:36

我现在可以想到两种方法:

1。 NSURLProtocol 子类

子类并注册 NSURLProtocol 来拦截 http 请求,对于以已知图像扩展名结尾的 url,不发出请求,只返回一个空字符串作为正文。这很容易出错,例如:

<img src="http://foobar.com/deliverImage.php?id=400&size=lager" />

对于请求图像资源有效,并且 URL 没有提示任何内容。您当然可以更进一步进行下载,或者至少启动请求并拦截收到的标头并检查返回的 mime 类型甚至文件正文。

2.在渲染之前解析和过滤 html

第二种解决方案更简单一些:
不是直接在webview中下载html,而是使用NSURLConnection或ASIHTTPRequest来获取页面。现在你可以解析它并替换所有img标签的src属性的内容。

尽管如此,这仍然不会阻止图像加载 css 等背景。

I can think of two ways right now:

1. NSURLProtocol subclass

Subclass and register NSURLProtocol to intercept http requests, and for urls ending in known image extensions just don't make the request, just return an empty string as body. This is error prone as for example:

<img src="http://foobar.com/deliverImage.php?id=400&size=lager" />

is valid to request image resources and the URL doesn't hint anything. You could of course go one step further and download, or at least start the request and intercept the headers received and check for the mime type returned or even the file's body.

2. Parse and filter html before rendering

The second solution is a bit easier:
Download the html not directly in the webview, but instead use NSURLConnection or ASIHTTPRequest to get the page. Now you can parse it and replace the content of the src attribute of all img tags.

Still this won't prevent images being loaded with css for backgrounds for example.

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