8

我的视图控制器中嵌入了一个 UIWebView,如下所示:

在此处输入图像描述

我的网络视图 ( _graphTotal) 有一个出口,我可以使用以下方法成功加载其中的内容test.html

[_graphTotal loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"test" ofType:@"html"]isDirectory:NO]]];

我现在正试图将数据传递给网络视图并且没有任何运气。我已经添加了<UIWebViewDelegate>,这就是我正在尝试的:

NSString *userName = [_graphTotal stringByEvaluatingJavaScriptFromString:@"testFunction()"];
NSLog(@"Web response: %@",userName);

test.html以下是我项目中的内容:

<html>
  <head></head>
  <body>
    Testing...
      <script type="text/javascript">
        function testFunction() {
          alert("made it!");
          return "hi!";
        }
        </script>
  </body>
</html>

我可以在我的 webView 中看到“正在测试...”,但我没有看到警报,也没有看到返回的“嗨!” 细绳。

知道我做错了什么吗?

4

1 回答 1

16

那么问题是你试图在 webview 有机会加载页面之前评估你的 javascript。首先将<UIWebViewDelegate>协议采用到您的视图控制器中:

@interface ViewController : UIViewController <UIWebViewDelegate>

然后将您的 webview 的委托连接到您的视图控制器,发出请求并最终实现委托方法。这是在 webview 完成加载时通知您的通知:

- (void)viewDidLoad
{
    [super viewDidLoad];

    [self.graphTotal loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"test" ofType:@"html"]isDirectory:NO]]];
}

- (void)webViewDidFinishLoad:(UIWebView *)webView
{
    NSString *userName = [self.graphTotal stringByEvaluatingJavaScriptFromString:@"testFunction()"];
    NSLog(@"Web response: %@",userName);
}

PS:当您以这种方式评估 javascript 时,您必须注意的限制之一是您的脚本必须在 10 秒内执行。因此,例如,如果您等待超过 10 秒来解除警报,您将收到错误消息(等待 10 秒后返回失败)。在 docs 中查找有关限制的更多信息。

于 2013-06-14T22:16:36.220 回答