UIWebView baseURL and absolute path(UIWebView baseURL 和绝对路径)
问题描述
我有一个这样构造的 HTML 页面:
I have an HTML page that is constructed like this:
<html>
<head>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
</body>
</html>
它存储在我的文档目录中:
It is stored in my documents directory:
/Users/username/Library/Application Support/iPhone Simulator/5.1/Applications/12345-ID/Documents/mysite/index.html
我也将 style.css 保存在文档目录中:
I have also stored the style.css in the documents directory:
/Users/username/Library/Application Support/iPhone Simulator/5.1/Applications/12345-ID/Documents/mysite/style.css
但是现在,当我尝试使用以下方法将 html 加载到我的 webview 中时:
But now, when I try to load the html into my webview using this:
NSURL *test = [NSURL URLWithString:@"file:///Users/username/Library/Application Support/iPhone%20Simulator/5.1/Applications/12345-ID/Documents/mysite/"]
[myWebView loadHTMLString:<the content retrieved from index.html> baseURL:test];
css 没有加载,当我使用 NSURLProtocol 拦截对样式表的请求时,我可以看到请求是错误的.它正在尝试请求:
The css is not loaded, when I intercept the request to the stylesheet with a NSURLProtocol I can see the request is wrong. It is trying to request:
file:///style.css
file:///style.css
而不是完整的 baseURL.现在我可以通过删除html文件中/style.css前面的/来解决这个问题.但是有没有一种简单的方法可以在不修改 html 的情况下在本机代码中解决这个问题?
instead of the full baseURL. Now I can solve this by removing the / in front of /style.css in the html file. But is there an easy way to resolve this in native code without modifying the html?
推荐答案
删除斜线是唯一的解决方案
Removing the slash was the only solution
这篇关于UIWebView baseURL 和绝对路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UIWebView baseURL 和绝对路径
基础教程推荐
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01