WKWebView在iOS10及以上不加载httpURL,不渲染html页面

WKWebView does not load http URL in iOS 10 and above, html pages are not rendered

我正在尝试在 WKWebView 中加载 http URL,在 info.plist 文件中启用 NSAllowsArbitraryLoadsNSAllowsArbitraryLoadsInWebContent 后,页面加载完全正常。但是在导航应用程序期间,html 页面没有完全加载,我的自定义微调器也没有消失。

我试过 NSExceptionDomains 但没有成功。

当我尝试用 https://myurl

加载 url 时一切正常

请推荐

我找到了上述问题的答案

history.back() 在 iOS 11 中的 HTML 后退按钮上不起作用。添加 history.go(-1) 对我有用。