gpt4 book ai didi

ios - WKWebView:访问本地文件的远程 url

转载 作者:可可西里 更新时间:2023-11-01 04:55:16 26 4
gpt4 key购买 nike

我正在使用 Xamarin.iOS,但一切都可以轻松转换为 ObjC/Swift。

我有一个 WKWebView,它加载一个远程 URL(html、js、css),然后加载本地存储在应用程序中的 mp4 视频。问题是没有加载这些视频。

该站点使用 HTML 5 视频标签,我通过将 C# 与 Javascript 通信来设置本地 url。

视频路径是这样的:/var/mobile/Containers/Data/Application/F535FA1C-752B-4B46-B237-6781464EE0E5/Documents/../Library/Vimeo/7b2723fa-b0f1-40c5- bc58-d43949273329.mp4.

这是我的 WKWebView 设置:

var userController = new WKUserContentController();
userController.AddScriptMessageHandler(new iOSSiteWrapper(this.ViewModel, () => this.webView), "iOSWrapper");
var configuration = new WKWebViewConfiguration
{
AllowsInlineMediaPlayback = true,
UserContentController = userController
};
configuration.Preferences.JavaScriptCanOpenWindowsAutomatically = true;
configuration.Preferences.JavaScriptEnabled = true;
configuration.Preferences.SetValueForKey(NSObject.FromObject(true), new NSString("allowFileAccessFromFileURLs"));
configuration.AllowsInlineMediaPlayback = true;
configuration.AllowsPictureInPictureMediaPlayback = true;
if (UIDevice.CurrentDevice.CheckSystemVersion(10, 0))
{
configuration.MediaTypesRequiringUserActionForPlayback = WKAudiovisualMediaTypes.None;
}
else
{
configuration.MediaPlaybackRequiresUserAction = false;
}

this.webView = new WKWebView(
new CoreGraphics.CGRect(),
configuration)
{
WeakNavigationDelegate = this
};

// add to view hierarchy...

// this.ViewModel.HtmlContent is a string which contains the html page
this.webView.LoadHtmlString(this.ViewModel.HtmlContent, NSUrl.FromString(Constants.BASE_URL));

我已经在 Info.plist 文件中配置了 ATS 异常。

更新

我尝试加载这个简单的 html 字符串:

var videoToPlay = "file:///var/mobile/Containers/Data/Application/F535FA1C-752B-4B46-B237-6781464EE0E5/Documents/../Library/Vimeo/7b2723fa-b0f1-40c5-bc58-d43949273329.mp4";
var html = $"<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" /></head><body id=\"page\"><div id=\"VideoBean\" style=\"position:relative;\" width=\"305\" height=\"242\"><video id=\"video\" type=\"video/mp4\" controls=\"controls\" role=\"presentation\" width=\"305\" height=\"242\"><source id=\"source\" src=\"{videoToPlay}\"></video></div></body></html>";

this.webView.LoadHtmlString(html, NSUrl.FromString(Constants.BASE_URL));

结果是一样的。视频无法播放,我可以在 Safari 输出中看到此错误:

Not allowed to load local resource: file:///var/mobile/Containers/Data/Application/F535FA1C-752B-4B46-B237-6781464EE0E5/Documents/../Library/Vimeo/7b2723fa-b0f1-40c5-bc58-d43949273329.mp4

第二次更新

如果我加载将本地路径设置为基本 url 的 html 片段,它会起作用:

this.webView.LoadHtmlString(html, NSUrl.FromFilename(videoToPlay));

但是当我试图加载一个远程站点时,我需要将基本 url 作为远程基本 url。所以一个新的问题是:是否可以在 WKWebView 上设置两个基本 url?

否则,除了在本地加载整个站点之外,我还有其他选择吗?

最佳答案

这是我为让它工作所做的工作:

1) 下载html文件到本地

2) 在 html 文件中查找所有相关 url 并在其上设置基本 url。我的意思是这样的:src="myvideo.mp4 --> src="https://myhomeurl.com/myvideo.mp4"

3) 使用 webView.LoadFileUrl 而不是 LoadHtmlString (我还将第二个参数从 NSUrl.FromString 更改为 NSUrl。 FromFilename).

关于ios - WKWebView:访问本地文件的远程 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48572219/

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