webview supports LocalStorage local storage

              //Allow JavaScript to execute  
webView.getSettings().setJavaScriptEnabled(true);  
  
// Enable DOM cache and enable LocalStorage storage (html5 local storage method)  
webView.getSettings().setDomStorageEnabled(true);  
webView.getSettings().setDatabaseEnabled(true);  
webView.getSettings().setDatabasePath(MainActivity.this.getApplicationContext().getCacheDir().getAbsolutePath());  

 HTML5 local storage, but webview does not support processing methods

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326356912&siteId=291194637