javascript – UIWebView – 使用链接的资源加载本地.html文件
作者:互联网
我不知道我已经阅读了多少个论坛,但我真的不知道为什么它不起作用!
我有一个iPhone应用程序,我想向我的用户显示一个Epub书.
用户可以在线阅读,否则他可以将其下载到Application Documents目录中以便以后阅读.
我构建了与在线版本相同的文件夹结构,并将其保存到文档文件夹“frontend”中.
我也可以阅读这个维护.HTML文件,但链接的JS / CSS和HTML文件不起作用.
所以我有一些截图.我不知道,为什么javascript无法访问.html文档.
offline version – saved into the filesystem “document folder”
online version – directly from server – it’s ok!
我希望你能给我一些提示.
解决方法:
只需编写代码即可
NSString *path = [[NSBundle mainBundle] pathForResource:@"offlineEpub" ofType:@"html"];
NSString *content = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
UIWebView *webView = [[UIWebView alloc] init];
[webView loadHTMLString:content baseURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]]];
[self.view addSubview:webView];
主要是提供基本URL作为mainBundle或文档目录.
标签:html,javascript,ios,document,uiwebview 来源: https://codeday.me/bug/20190826/1725662.html