gpt4 book ai didi

html - 如何在 webview 中设置 html 字符串 (swift 4.0)

转载 作者:搜寻专家 更新时间:2023-10-31 08:24:27 26 4
gpt4 key购买 nike

当我尝试加载这种类型的 html 字符串时,我遇到了问题

(<p>Identify the arrow-marked structures in the images<img alt=\"\" src=\"https:\/\/dams-apps-production.s3.ap-south-1.amazonaws.com\/course_file_meta\/73857742.PNG\" \/><\/p>\r\n)

webview 中。问题是由于向后斜线引起的。

任何帮助将不胜感激

最佳答案

URL 字符串在您的 html 字符串中的正斜杠 / 有问题。

enter image description here

正确的 url 字符串是:https://dams-apps-production.s3.ap-south-1.amazonaws.com/course_file_meta/73857742.PNG

我在这里尝试了这个及其工作原理:

class WebKitController: UIViewController {

@IBOutlet weak var webView: WKWebView!

override func viewDidLoad() {
super.viewDidLoad()
loadHTMLStringImage()
}

func loadHTMLStringImage() -> Void {
let htmlString = "<p>Identify the arrow-marked structures in the images<img alt=\"\" src=\"https://dams-apps-production.s3.ap-south-1.amazonaws.com/course_file_meta/73857742.PNG\"></p>"
webView.loadHTMLString(htmlString, baseURL: nil)
}
}

结果:

enter image description here

关于html - 如何在 webview 中设置 html 字符串 (swift 4.0),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49315605/

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