android - html5本地存储问题

发布于 2024-11-26 08:54:40 字数 357 浏览 1 评论 0原文

在android中渲染HTML5页面时,我使用了HTML5的localStorage。

localStorage["temp"] = "test";

对于上面的行,它给出错误: TypeError: 'null' is not an object (evaluating 'localStorage["temp"] = "test" ')

(它在chrome或firefox浏览器中完美运行,在html5存储页面中编写它支持android 2.0+)

While rendering HTML5 page in android where i had used localStorage of HTML5.

localStorage["temp"] = "test";

For above line it gives error: TypeError: 'null' is not an object (evaluating 'localStorage["temp"] = "test"').

(It works perfectly in browsers-chrome or firefox, In html5 storage page its written it supports android 2.0+)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁虫ゝ 2024-12-03 08:54:40

尝试将其设置为您的网络视图设置:

yourWebViewObject.getSettings().setDomStorageEnabled(true);

Try setting that to your webview settings :

yourWebViewObject.getSettings().setDomStorageEnabled(true);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文