1. 程式人生 > >iOS WebView 載入本地資源(圖片,檔案等)

iOS WebView 載入本地資源(圖片,檔案等)

複製程式碼
NSString *path = [[NSBundle mainBundle] pathForResource:@"關於.docx" ofType:nil];  
    NSURL *url = [NSURL fileURLWithPath:path];  
    NSLog(@"%@", [self mimeType:url]);  
      
      
    //webview載入本地檔案,可以使用載入資料的方式  
    //第一個誒引數是一個NSData, 本地檔案對應的資料  
    //第二個引數是MIMEType  
    //第三個引數是編碼格式  
    //相對地址,一般載入本地檔案不使用,可以在指定的baseURL中查詢相關檔案。  
      
    
//以二進位制資料的形式載入沙箱中的檔案, NSData *data = [NSData dataWithContentsOfFile:path]; [self.webView loadData:data MIMEType:@"application/vnd.openxmlformats-officedocument.wordprocessingml.document" textEncodingName:@"UTF-8" baseURL:nil];
複製程式碼 複製程式碼
NSString *html;
    
    NSString *cachePath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) objectAtIndex:0
]; NSString *htmlFilePath=[cachePath stringByAppendingPathComponent:@"123.html"]; // NSString *html=[[NSString alloc]initWithContentsOfFile:htmlFilePath encoding:NSUTF8StringEncoding error:nil]; NSURL *baseURL= [NSURL fileURLWithPath:htmlFilePath]; if ([[NSFileManager defaultManager] fileExistsAtPath:htmlFilePath]) { NSString
*string = [NSString stringWithContentsOfFile:htmlFilePath encoding:NSUTF8StringEncoding error:nil]; if (string) { html = string; } } // NSString *path = [[NSBundle mainBundle] bundlePath]; // NSURL *baseURL2 = [NSURL fileURLWithPath:path]; [self.webView loadHTMLString:html baseURL:baseURL];
複製程式碼

至於在沙盒裡面的圖片,想載入到web裡面,發現在模擬器裡面是正常,然後再真機上載入不出來

多次嘗試,無果,找資料時發現下面的方法可以載入沙盒中圖片

複製程式碼
NSData *imageData=[NSData dataWithContentsOfFile:imagePath];//imagePath :沙盒圖片路徑
NSString *imageSource = [NSString stringWithFormat:@"data:image/jpg;base64,%@",[imageData base64EncodedStringWithOptions:NSDataBase64EncodingEndLineWithLineFeed]];
NSString *strJs=[NSString stringWithFormat:@"document.images[0].src='%@'",imageSource];
[webView evaluateJavaScript:strJs completionHandler:^(id _Nullable response, NSError * _Nullable error) {
   NSLog(@"webView response: %@ error: %@", response, error);
        
}];
複製程式碼