问题描述
如何为 WKWebView
中显示的 HTML 内容获取 scalesPageToFit
行为而不使用 JavaScript?(在我们的例子中需要禁用 JS).
How to get scalesPageToFit
behaviour for HTML content displayed in a WKWebView
without using JavaScript? (disabling JS is a requirement for in our case).
很抱歉没有发布任何代码,但我不知道如何实现这一点.我知道的所有解决方案和我发现的所有解决方案都基于 JS.示例.
Sorry for not posting any code, but I have no idea how I could achieve this. All solutions I know and all I found are based on JS. Example.
如果 HTML 尚不存在,我已经将 <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
添加到 HTML 中,但是至少图像通常显示的太大了.
I already add <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
to the HTML if it does not exist yet, but at least images are often displayed way too big.
所有图像都由 WKURLSchemeHandler
提供给 WKWebView
.
All images are provided to WKWebView
by a WKURLSchemeHandler
.
推荐答案
请放
<meta name="viewport" content="initial-scale=1.0" />
在您的 标签内.
这篇关于WKWebView:无需 Java 脚本即可缩放 PageToFit 行为的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!