gpt4 book ai didi

ios - 从应用程序的文档目录加载本地 html 文件 swift wkwebview

转载 作者:搜寻专家 更新时间:2023-11-01 06:54:37 27 4
gpt4 key购买 nike

我正在尝试加载一个本地 html 文件,该文件已使用 wkwebview 下载到我的应用程序中。除了这个 html 文件,我还下载了两个 js 文件,它们在 html 文件中被引用。

但是无论我做什么,它们都不会加载到 wkwebview 中

 @IBOutlet var webView: WKWebView!
@IBOutlet var act: UIActivityIndicatorView!
override func viewDidLoad() {
super.viewDidLoad()
// Adding webView content
webView.uiDelegate = self
webView.navigationDelegate = self


let fm = FileManager.default
let docsurl = try! fm.url(for:.documentDirectory, in: .userDomainMask, appropriateFor: nil, create: false)
let myurl = docsurl.appendingPathComponent("index.html")
print("my url = ",myurl )
// myurl prints file///var/some directories/index.html
let request = URLRequest(url: myurl!)
webView.load(request)
}

我的 html 文件

<!DOCTYPE html>
<html>
<head>
<script src="jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("p").hide();
});
});
</script>
</head>
<body>

<h2>This is a heading</h2>

<p>This is a paragraph.</p>
<p>This is another paragraph.</p>

<button>Click me</button>

</body>
</html>

但它没有从 safari(Develop/) 加载到屏幕上,我可以看到 尝试加载资源时发生错误,页面即将出现:空白

最佳答案

swift 4.2

 //load HTML
let bundle = Bundle.main
var path = bundle.path(forResource: "index", ofType: "html")
var html = ""
do {
try html = String(contentsOfFile: path!, encoding: .utf8)
} catch {
//ERROR
}
let urlstr = "http://website.com"
webViewWK.loadHTMLString(html, baseURL: URL(string: urlstr)!)

关于ios - 从应用程序的文档目录加载本地 html 文件 swift wkwebview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54416336/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com