gpt4 book ai didi

javascript - 使用保存在 iOS 应用程序沙箱(文档目录)中的 .html、.js 文件,这样我也可以在离线模式下打开 html 文件

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:18:46 27 4
gpt4 key购买 nike

我必须显示一个 .html 文件,该文件需要 highcharts.js、jquery.min.js 才能显示图形。我计划在 UIWebView 中显示 .html 文件。

我看到当文件(即 html、highcharts.js、jquery.min)在应用程序包中时,我可以像这样使用它们--

aPath = [[NSBundle mainBundle] pathForResource:@"htmlfile"ofType:@"html"];
[self.graphWebView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:aPath isDirectory:NO]]];

这里,“htmlFile”的源代码是这样的——

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>TITLE</title>

<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="highcharts.js"></script>
<script type="text/javascript" src="htmlfile.js"></script>
<script type="text/javascript" src="global.js"></script>
</head>
<body>
<div id="wrapper">

<div id="container"></div>
</div>
</body>
</html>

因此,为了在 UIWebView 中显示内容,我只需要在 Xcode 的构建阶段选项卡中将 .html 文件和 .js 文件制作为 Bundle Resources

问题:

保存在App沙盒中的.html文件如何显示如上图源代码?

我试过的:

1. 我在 App SandBox 中创建了一个这样的文件夹——

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) ;

NSString aFolderPath = [(NSString)[paths objectAtIndex:0] stringByAppendingFormat:@"/%@",@"folder"];

if(![[NSFileManager defaultManager] isWritableFileAtPath:aFolderPath]){

[[NSFileManager defaultManager]createDirectoryAtPath:aFolderPath withIntermediateDirectories:NO attributes:nil error:nil]; }

2.然后我从App Bundle中复制了App SandBox中的html,js文件,像这样--

NSString *aJs = [[NSBundle mainBundle] pathForResource:@"JSFile" ofType:@"js"];

aJs = [NSString stringWithContentsOfFile:aGlobaljs encoding:NSUTF8StringEncoding error:nil];

NSString *aPath = [(NSString*)[paths objectAtIndex:0] stringByAppendingFormat:@"/folder/%@",@"JSFile.js"];

[aJs writeToFile:aPath atomically:YES encoding:NSUTF8StringEncoding error:nil];

现在所有需要的文件都在名为“folder”的 SandBox 文件夹中,所以,我尝试像这样在 UIWebView 中打开保存的 html 文件——

[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:pathToHtmlFileinDocumentsDic relativeToURL:[NSURL URLWithString:aFolderPath]]]];

这行不通。

最佳答案

您必须将文件保存在应用程序资源中,这里的技巧是保持 JavaScript 文件与 HTML 文件的相对链接。添加 html 包时,选择“为任何添加的文件夹创建文件夹引用”。并在代码中像这样调用您的 html 页面:

NSString *filePath = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html" inDirectory:@"Help"];

NSURL *indexUrl = [NSURL fileURLWithPath:filePath];

您所有的 Html 页面(包括 cssimagesjs)都在帮助(或您拥有的任何其他名称)文件夹中。即,它就像在文件夹中维护一个本地静态站点

关于javascript - 使用保存在 iOS 应用程序沙箱(文档目录)中的 .html、.js 文件,这样我也可以在离线模式下打开 html 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13152170/

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