如何在WKWebView中监视和阻止ajax请求?

时间:2017-07-10 22:13:39

标签: ios ajax swift macos wkwebview

根据我的理解和尝试一些代码,我们只能使用

监控页面导航请求
func webView(_ webView: WKWebView, decidePolicyFor navigationResponse: WKNavigationResponse, decisionHandler: @escaping (WKNavigationResponsePolicy) -> Void)
{
    if // some condition
    {
        decisionHandler(.allow) // to allow the page navigation.
    }
    else
    {
        decisionHandler(.cancel) // to cancel the page navigation.
    }
}

但是有没有办法在WKWebView中监视和阻止一些ajax请求?

还要捕获ajax响应。

0 个答案:

没有答案