我的Android版本的应用程序使用WebView,并依靠shouldInterceptRequest方法提供svg资源,这些资源在运行时下载并由http/https从WebView请求。
希望在iOS版本的应用程序上迁移此类行为。但是,似乎WKWebView没有提供用于拦截http/https请求的工具。鉴于必须使用WKWebView,可以采用哪些策略在ios上实现类似的行为?

最佳答案

最终我最终使用了。 GCDWebServer

我已经像这样设置本地网络服务器:

let webServer: GCDWebServer = GCDWebServer()

webServer.addGETHandler(forBasePath: "/", directoryPath: baseResourcePath, indexFilename: "index.html", cacheAge: 0, allowRangeRequests: true)


然后提供位于index.html包含目录之外的文件
一个必须附加自定义get处理程序:

webServer.addHandler(forMethod: "GET", pathRegex: "images", request: GCDWebServerRequest.self) { request in
        let fileName = request.path.components(separatedBy: "/images/")[1]
        var documentsURL = FileManager.default.urls(for: .docmentDirectory, in: .userDomainMask)[0]
        documentsURL.appendPathComponent("images/\(fileName)")
        let response = GCDWebServerFileResponse(file: documentsURL.path)
        return response
    }

10-08 15:49