Android中,WebView 的 DomStorageEnabled 默认值为 false;如果业务中需要用到 LocalStorage,则要进行如下设置:

1
mWebView.getSettings().setDomStorageEnabled(true);