如何阻止外部资源加载WKWebView?

问题描述 投票:5回答:2

我有一个加载网页的应用程序,但阻止下载图像,字体,javascripts等。为此我实现了一个NSURLProtocol子类,它与UIWebView非常适用。

然而,我正在迁移到WKWebview,并意识到我精心制作的NSURLProtocol类不再能够过滤掉这些资源。

有谁知道如何实现过滤/阻止?

如果您想知道我是如何进行迁移的,我从这篇文章开始:http://floatlearning.com/2014/12/uiwebview-wkwebview-and-tying-them-together-using-swift/

ios ios8 wkwebview
2个回答
12
投票

从iOS 11开始,您可以使用WKContentRuleList

首先,创建内容规则或列表。每个规则都包含一个触发器和一个动作。见Apple's Documentation on Content Rule creation

这是一个创建示例,阻止所有图像和样式表内容,但允许那些以jpeg结尾的方式忽略以前的规则:

     let blockRules = """
         [{
             "trigger": {
                 "url-filter": ".*",
                 "resource-type": ["image"]
             },
             "action": {
                 "type": "block"
             }
         },
         {
             "trigger": {
                 "url-filter": ".*",
                 "resource-type": ["style-sheet"]
             },
             "action": {
                 "type": "block"
             }
         },
         {
             "trigger": {
                 "url-filter": ".*.jpeg"
             },
             "action": {
                 "type": "ignore-previous-rules"
             }
         }]
      """        

拥有规则列表,您可以将它们添加到ContentRuleListStore

    import WebKit
    @IBOutlet weak var wkWebView: WKWebView!

    let request = URLRequest(url: URL(string: "https://yourSite.com/")!)

    WKContentRuleListStore.default().compileContentRuleList(
        forIdentifier: "ContentBlockingRules",
        encodedContentRuleList: blockRules) { (contentRuleList, error) in

            if let error = error {
                return
            }

            let configuration = self.webView.configuration
            configuration.userContentController.add(contentRuleList!)

            self.wkWwebView.load(self.request)
    }

如果以后要删除所有规则,请致电:

    self.wkWebView.configuration.userContentController.removeAllContentRuleLists()
    self.wkWebView.load(self.request)

这是2017 WWDC video

祝你好运!

我创建了一个示例项目on Github WKContentRuleExample


3
投票

从iOS 9.0开始,无法拦截WKWebView的网络请求。您可以通过JavaScript以有限的方式执行此操作。

请提交WebKit错误或Apple错误以请求此功能。我们中的许多人都需要这些钩子。

© www.soinside.com 2019 - 2024. All rights reserved.