通过文件共享加载时,iOS 应用程序中的 UIWebView 无法看到 JavaScript

发布于 2024-10-05 18:39:25 字数 438 浏览 1 评论 0原文

在我的 iOS 应用程序中,我有一种方法可以让用户通过 iTunes/Apps 选项卡/文件共享来安装 zip 文件。 zip 文件包含 HTML/CSS/JavaScript。应用程序解压缩文件,index.html 文件加载到 UIWebView 中。这很好用。

我知道当您将 JavaScript 文件与 HTML/CSS 文件一起添加到 XCode 中的 Resources 文件夹中时,在编译之前,您需要将 JavaScript 文件从 Compile Resources 文件夹移动到 Copy Bundle Resources 文件夹中,否则 HTML 无法找到 JavaScript 文件。

对于我通过 iTunes 文件共享加载的资源,HTML 文件似乎找不到 JavaScript 文件。通过文件共享添加文件以使 HTML 使用 JavaScript 文件时,我还需要做什么?

TIA, 琳达

In my iOS app, I have a way for the User to install a zip file through iTunes/Apps Tab/File sharing. The zip file contains HTML/CSS/JavaScript. The app unzips the file and index.html file is loaded in a UIWebView. This works fine.

I know when you add JavaScript files along with HTML/CSS files into the Resources folder in XCode, before compiling you need to move the JavaScript files from the Compile Resources folder into the Copy Bundle Resources folder or the HTML cannot find the JavaScript file.

For the resources that I am loading through iTunes File Sharing, it appears that the HTML files cannot find the JavaScript files. What else do I need to do when adding the files through File Sharing in order for the HTML to use the JavaScript file?

TIA,
Linda

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

歌入人心 2024-10-12 18:39:25

我猜测您用来显示 HTML 内容的 UIWebView 加载方法的 baseURL 参数设置不正确。我会尝试将 baseURL 设置为指向包含解压资源的文件夹的文件 URL,也许使用 NSBundle- (NSURL *)URLForResource:(NSString * )name withExtension:(NSString *)extension 方法,或类似的东西。

I would guess the baseURL parameter of whichever UIWebView load method you're using to display the HTML content is being set incorrectly. I would try setting baseURL to the file URL pointing to the folder containing the unzipped assets, perhaps using NSBundle's - (NSURL *)URLForResource:(NSString *)name withExtension:(NSString *)extension method, or something similar.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文