0

我目前有一个成功加载 html 文件的 web 视图。我这样做的方法看起来像:

- (EmailView *)loadHTMLIntoEmailView:(EmailView *)emailView
{
    NSString *path = [[NSBundle mainBundle] pathForResource:@"inlineAttachmentTemplate" ofType:@"html"];
    NSData *htmlData = [NSData dataWithContentsOfFile:path];
    NSString *resourceURL = [[NSBundle mainBundle] resourcePath];
    resourceURL = [resourceURL stringByReplacingOccurrencesOfString:@"/" withString:@"//"];
    resourceURL = [resourceURL stringByReplacingOccurrencesOfString:@" " withString:@"%20"];
    NSURL *baseURL = [NSURL URLWithString:[NSString stringWithFormat:@"file:/%@//",resourceURL]];

    [emailView.webView loadData:htmlData MIMEType:@"text/html" textEncodingName:@"UTF-8" baseURL:baseURL];
    return emailView;
 }

我拥有的 html 文件如下所示:

<!doctype html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <link rel="stylesheet" href="inlineAttachmentTemplateStyling.css">

<script>
function myFunction()
   {
    document.write("Hello from my html file!!!!");

   }
</script>      

</head>
<body id="body">
 <div id="container">
     <img id="testImage" src="fauxImageAttachment2.JPG" />
 </div><!-- #container -->
</body>
</html>

这是因为图像出现在 web 视图中。如果我将 document.write 从函数中取出并将其直接放在脚本标签中,则文本会出现在 webview 中。但是,我需要能够调用一个允许文本显示在 webview 中的函数(从我的 Objective C 方法),最终我还需要向这个函数传递一些变量。目前,我什至无法弄清楚如何调用 javascript 函数。

我看了这个例子,你可以使用 PhoneGap 和 iOS 从本机代码(不是在回调中)调用 javascript 函数吗?,并尝试将以下行添加到我的目标 C 方法中:

    [emailView.webView stringByEvaluatingJavaScriptFromString:@"myFunction()"];

但这不会调用函数......或者至少文本不会出现在 webview 中。
我是一个新手程序员,对 javascript 知之甚少 - 任何人都可以强调我做错了什么吗?

4

1 回答 1

0

我找不到调用在我加载到 UIWebView 的 html 文档中定义的 javascript 函数的方法(我不知道这是否可行)。但是我发现如果我不使用单独的 html 文件,而是直接在我的目标 c 代码中创建的 html 字符串,我可以实现我的目标。我能够将变量传递给创建 html 字符串的函数,并且我也能够在 html 字符串中运行我的 javascript。

这是我创建 html 字符串的方法:

- (NSString *)htmlString:(NSString *)emailMessage {

    NSString *imageName = @"fauxImageAttachment2.JPG";

    NSString *string = [NSString stringWithFormat:@""
    "<!doctype html>"
    "<head>"
    "<meta charset='utf-8'>"
    "<meta name='viewport' content='width=device-width,initial-scale=1'>"
    "<link rel='stylesheet' href='inlineAttachmentTemplateStyling.css'>"
    "</head>"

    "<body id='body'>"
    "<div id='container'>"
    "<script type='text/javascript'>"
    "document.write('%@');"
    "</script>"
    "<img id='testImage' src='%@' />"
    "</div><!-- #container -->"
    "</body>"

    "</html>", emailMessage, imageName];

  return string;
}

这是我将它加载到 webview 中的方式:

- (EmailView *)loadHTMLIntoEmailView:(EmailView *)emailView
{
   NSString *sampleEmailMessage = @"Hey! Check out this awesome photo I sent you!!!!!";
   NSString *path = [[NSBundle mainBundle] bundlePath];
   NSURL *baseURL = [NSURL fileURLWithPath:path];
    [emailView.webView loadHTMLString:[self htmlString:sampleEmailMessage] baseURL:baseURL];

    return emailView;
}

不确定这是否是最好的方法,但它适用于我的目的。

于 2013-08-29T17:31:02.627 回答