在 UI 中执行 javaScript在 Swift 中的 UIWebView



我正在尝试使用 Swift 3.0 在我的 iOS 应用程序中执行亚马逊移动添加。 文件加载成功。 我可以在网络视图中运行谷歌URL(下面注释的代码(。 我不明白如何执行javaScript。 我一直在阅读教程,但似乎没有任何内容可以在 webView 中按原样运行脚本。 我尝试了webView.stringByEvaluatingJavaScript和context.evaluateScript,但我得到的只是"Amazon Ad",而不是webView中的脚本输出。

我的问题是,如何在webView或任何其他视图中以最简单的方式运行javaScript。 xxxxx 是"编辑"的用户密钥。

<!DOCTYPE html>
<html>
<body>
<h1>Amazon Ad</h1>
<script type="text/javascript">
amzn_assoc_placement = "xxxxxx";
amzn_assoc_search_bar = "true";
amzn_assoc_tracking_id = "xxxxxx";
amzn_assoc_search_bar_position = "bottom";
amzn_assoc_ad_mode = "search";
amzn_assoc_ad_type = "smart";
amzn_assoc_marketplace = "amazon";
amzn_assoc_region = "US";
amzn_assoc_title = "Star Wars Black Series 6"";
amzn_assoc_default_search_phrase = "Star Wars Black Series 6 Inch";
amzn_assoc_default_category = "All";
amzn_assoc_linkid = "xxxxxxx";
</script>
<script src="//z-na.amazon-adsystem.com/widgets/onejs?MarketPlace=US"></script>
</body>
</html>

这是带有UIWebView的UIViewController。 我尝试了以下两种方法,

webView.stringByEvaluatingJavaScript(from: common), 
webView.loadHTMLString(common, baseURL: Bundle.main.bundleURL)

法典

import UIKit
import JavaScriptCore
class AmazonFullAdViewController: UIViewController, UIWebViewDelegate {
@IBOutlet weak var webView: UIWebView!
var url = URL(string: "https://google.com")
override func viewDidLoad() {
    super.viewDidLoad()
    webView.delegate = self
    // 1
    guard let commonJSPath = Bundle.main.path(forResource: "common", ofType: "js") else {
        //commonJSPath = Bundle.main.path(forResource: "Series", ofType: "txt") else {
            print("Unable to read resource files.")
            return
    }
    // 2
    do {
        let common = try String(contentsOfFile: commonJSPath, encoding: String.Encoding.utf8)
        _ = context?.evaluateScript(common)
        // webView.stringByEvaluatingJavaScript(from: common)
        webView.loadHTMLString(common, baseURL: Bundle.main.bundleURL)
    } catch (let error) {
        print("Error while processing script file: (error)")
    }
    //load initial URL
//        let req = URLRequest(url : url!)
//        webView.scalesPageToFit = true
//        webView.contentMode = .scaleAspectFit
//        webView.loadRequest(req)
}
}

我认为你需要告诉webview它需要加载一个html值,因为你的文件是一个包含javascript的html。

self.webview.loadHTMLString(yourfile)

相关内容

  • 没有找到相关文章

最新更新