gpt4 book ai didi

html - 如何在 Swift 中动态加载 HTML

转载 作者:行者123 更新时间:2023-11-30 13:00:10 25 4
gpt4 key购买 nike

我可以使用 Alamofire 返回页面的 HTML,但某些 div 的内容为空。如果我打开 Chrome 的开发者控制台,我可以在 ELements 选项卡而不是 Source 选项卡中看到它们。我如何在 Swift 中获取这些内容?

最佳答案

看看这个方法:+ stringWithContentsOfURL:encoding:error ( docs )

//the content url
let urlString = "https://google.com"
guard let theURL = URL(string: urlString) else {
print("Error: \(urlString) doesn't seem to be a valid URL")
return
}

do {
let myHTMLString = try String(contentsOf: theURL, encoding: .ascii)
print("html : \(myHTMLString)")
} catch let error {
print("Error: \(error)")
}

关于html - 如何在 Swift 中动态加载 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39941582/

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