zoukankan      html  css  js  c++  java
  • WKWebview加载本地图片时出现路径问题

    出现问题情况是:将uiwebview换成wkwebview之后,之前将webview上那些图片放回本地下载后缓存的图片没办法在webview上找到,最后排查出原因是,wkwebview需要将图片和网页文件放在同个路径下。

    具体实现方法如下(获取图片缓存的路径,将本地html和css文件复制到该路径下):

    css复制到图片路径:

           let baseDir = ImageCacheTool.imageBasePath()!//本地图片缓存路径

                if !FileManager.default.fileExists(atPath: baseDir) {

                    try? FileManager.default.createDirectory(atPath: baseDir, withIntermediateDirectories: true, attributes: nil)

                }

           let srcPath = Bundle.main.path(forResource: "webview", ofType: "css")

              if !FileManager.default.fileExists(atPath: desPath) {

                  try? FileManager.default.copyItem(atPath: srcPath ?? "", toPath: baseDir + "/webview.css")

              }

    html复制到图片路径

           let htmlPath = ImageCacheTool.imageBasePath() + "/index.html"

              try? html.write(toFile: htmlPath, atomically: true, encoding: .utf8)

              webView.loadFileURL(URL(fileURLWithPath: htmlPath), allowingReadAccessTo: URL(fileURLWithPath: ImageCacheTool.imageBasePath()))

  • 相关阅读:
    SQL Server的AlwaysOn错误19456和41158
    kvm上的Linux虚拟机使用virtio磁盘
    利用HAProxy代理SQL Server的AlwaysOn辅助副本
    KVM安装部署
    ola.hallengren的SQL Server维护脚本
    在单链表的第i个位置后插入一个节点(阿里+腾讯等面试题总结)
    怎么发现RAC环境中'library cache pin'等待事件的堵塞者(Blocker)?
    php unserialize 返回false的解决方法
    千万别让这些举动断送了你的职业前程-好文共分享
    Android开发:仿美团下拉列表菜单,帮助类,复用简单
  • 原文地址:https://www.cnblogs.com/destiLaugh/p/11202378.html
Copyright © 2011-2022 走看看