Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

Android 4.0.1은 WebView HTML 5 로컬 저장소를 중단합니까?


이 문제를 해결하려면 다음 단계를 따르십시오 −

Android 버전 4.4 미만의 경우 이와 같은 디렉토리로 파일 구성표를 사용하여 webview에 데이터를 로드하면 작동하지 않습니다.

browser.loadDataWithBaseUrl("file:///android_asset/", html, "text/html", "UTF-8", null);

파일 이름을 추가하면 이전 Android 버전에서 작동합니다. −

browser.loadDataWithBaseUrl("file:///android_asset/new.html", htmlContent, "text/html", "UTF-8", null);

URL이 https://www.demo.com인 경우 다음을 사용할 수도 있습니다. −

browser.loadDataWithBaseURL("https://www.demo.com", htmlContent, "text/html", "utf-8", null);