Два вопроса:wkwebview запустить локальный HTML (в документе) Получено неожиданное URL из веб-процесса
1.Доступ файлы как .css .js должны через FULLPATH как код в index.html вы видите;
2.Прите коды index.html в бегите «document.body.appendChild (плавающий фрейм)», симулятор бег на пустой, и журнал Xcode:
получил неожиданные URL из веба-процесса: "файл:///Users/John_Chen/Library/Developer/CoreSimulator/Devices/20ABEC24-78BD-4577-9AA5-35CB1520F620/data/Containers/Data/Application/30A53A36-4A05-4491-A400-CEBF5F9E7D21/Documents/test/2.html» Получено неверное сообщение «WebPageProxy.DecidePolicyForNavigationAction» из веб-процесса.
Любой может помочь? TKS!
IOS код:
1.unZip test.zip к документу:
- (void)copyFloderToSandbox
{
NSFileManager *fm = [NSFileManager defaultManager];
NSString *originalPlayerPath = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"zip"];
NSString *originalMovi_01Path = [[NSBundle mainBundle] pathForResource:@"movi_01" ofType:@"zip"];
NSString *documentPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
NSString *PDoc = [documentPath stringByAppendingPathComponent:@"test"];
NSString *MDoc = [documentPath stringByAppendingPathComponent:@"movi_01"];
if (![fm fileExistsAtPath:PDoc])
{
[SSZipArchive unzipFileAtPath:originalPlayerPath toDestination:documentPath];
}
if (![fm fileExistsAtPath:MDoc])
{
[SSZipArchive unzipFileAtPath:originalMovi_01Path toDestination:documentPath];
}
}
2.WKWebView нагрузка index.html:
- (void)viewDidLoad {
[super viewDidLoad];
[self copyFloderToSandbox];
self.webView = [[WKWebView alloc]initWithFrame:self.view.bounds configuration:[self configWeb]];
_webView.navigationDelegate = self;
_webView.UIDelegate = self;
[self.view addSubview:_webView];
NSString *playerPath = [OMDBManager getLocalDataFilePathWithPathComponent:@"test"];
NSString *html = [playerPath stringByAppendingPathComponent:@"index.html"];
NSString *moviePath = [OMDBManager getLocalDataFilePathWithPathComponent:@"movi_01"];
NSString *moviParameter = [NSString stringWithFormat:@"movieroot=%@",playerPath];
NSString *playParameter = [NSString stringWithFormat:@"playerroot=%@",playerPath];
NSString *baseString = [NSString stringWithFormat:@"%@?%@&%@",html,moviParameter,playParameter];
NSURL *baseUrl = [NSURL fileURLWithPath:baseString isDirectory:YES];
NSString *htmlContent = [NSString stringWithContentsOfFile:html encoding:NSUTF8StringEncoding error:nil];
[_webView loadHTMLString:htmlContent baseURL:baseUrl];
}
- (WKWebViewConfiguration *)configWeb
{
WKWebViewConfiguration *configuration = [[WKWebViewConfiguration alloc]init];
configuration.preferences = [[WKPreferences alloc]init];
configuration.preferences.minimumFontSize = 18;
configuration.preferences.javaScriptCanOpenWindowsAutomatically = YES;
configuration.userContentController = [[WKUserContentController alloc]init];
[configuration.userContentController addScriptMessageHandler:self name:@"readJsonFile"];
return configuration;
}
Я решил его на gitHub по той причине, что ошибка WKWebview. Так что я заменил его на UIWebView. – JohnChen
Я думаю, вам стоит попробовать еще одну попытку, потому что UIWebView намного медленнее, чем WKWebView –