小编典典

如何检测WKWebview更改功放页面的URL

swift

我正在使用WKWebview开发简单的Web浏览器。我可以检测到SPA时url是否更改,例如trello带有自定义Javascript。

这种方式在放大器页面不起作用。(Google的“加速移动网页”)我尝试print("webView.url")使用所有WKNavigationDelegate功能,但无法检测到的变化amp page url

但是webView具有amp页面网址,我想将amp页面网址保存到本地存储。


阅读 410

收藏
2020-07-07

共1个答案

小编典典

同样的问题。不幸的是,WKWebView仅在整个页面加载发生时才触发其功能。

因此,我们要做的是在WebKit.url属性上使用键值观察。

看起来像这样:

import AVFoundation
import UIKit
import WebKit
import MediaPlayer

class ViewController: UIViewController, WKNavigationDelegate {
  @IBOutlet weak var webView: WKWebView!

  override func viewDidLoad() {
    super.viewDidLoad()

    webView.navigationDelegate = self

    self.webView.addObserver(self, forKeyPath: "URL", options: .new, context: nil)
    self.webView.addObserver(self, forKeyPath: "estimatedProgress", options: .new, context: nil)

    self.webView.load(URLRequest(url: "https://google.com"))
  }

  override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
    if keyPath == #keyPath(WKWebView.url) {
      print("### URL:", self.webView.url!)
    }

    if keyPath == #keyPath(WKWebView.estimatedProgress) {
      // When page load finishes. Should work on each page reload.
      if (self.webView.estimatedProgress == 1) {
        print("### EP:", self.webView.estimatedProgress)
      }
    }
  }

wkWebkitView中的每个其他导航都应引起“ ### URL”和“ ### EP”的新组合触发。

2020-07-07