Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我调用 loadData:MIMEType:textEncodingName:baseURL: 将内容加载到 web 视图中。在 webView:shouldStartLoadWithRequest:navigationType 我必须返回 Yes,否则 webview 不会显示内容。但我已经有了数据,所以我不需要 webview 来真正访问 baseURL。我能做些什么?
它不会访问 baseURL。该参数用于您提供的网页内的相对 URL。如果没有相对 URL,则 baseURL 甚至可以为零。但是,如果有相对URL(例如<img>标签),那么 Web 视图当然必须从其他地方获取它们。
<img>
我终于找到了原因。我有一个空白 src。