WKWebView不会在iframe中加载google文档

时间:2017-12-04 17:28:13

标签: javascript swift iframe wkwebview

我正在寻找使用WKWebView在iframe中加载谷歌文档的解决方案。 这是我的代码和Google文档示例

var webView: WKWebView = WKWebView(frame: self.view.frame, configuration: self.configuration)
...
let htmlstring = "<!DOCTYPE html>         <html>         <body>          <iframe src=\"https://docs.google.com/forms/d/e/1FAIpQLSeYZwAug7YgSvBs3ecMia_2GXkKgIgZIvNRRV2N-yLgm5ZC_A/viewform?embedded=true\" width=\"350\" height=\"500\"></iframe>          </body>         </html>"
webView.loadHTMLString(htmlstring, baseURL: nil)

但它显示空的内容。 是否有解决方案在iframe中显示谷歌文档?

0 个答案:

没有答案