可以在 Phonegap 中使用 window.localStorage 传递数组吗?

发布于 2024-12-28 07:02:21 字数 514 浏览 1 评论 0原文

目前,我正在尝试使用 window.localStorage 在两个页面之间的 Phonegap 中传递多维数组。在 main.js 中,我使用

var storage = window.localStorage;
storage.setItem("information", myArray);
window.location = "summary.html";

在文件summary.js 中,我使用:

var storage = window.localStorage;
var myArray = storage.get("information");

当我运行此命令时,myArray 仅返回未定义。我知道它在调用 window.location = "summary.html"; 之前已完全定义。我现在对问题的最佳猜测是,存储或检索数组时存在错误,至少是我这样做的方式。你不能通过 localStorage 传递数组吗,还是我做错了什么?

Currently, I'm trying to pass a multidimensional array in Phonegap between two pages with window.localStorage. In main.js, I use

var storage = window.localStorage;
storage.setItem("information", myArray);
window.location = "summary.html";

And in the file summary.js, I use:

var storage = window.localStorage;
var myArray = storage.get("information");

When I run this, myArray only returns undefined. I know that it is fully defined right before I call window.location = "summary.html";. My best guess to the problem right now is that there is an error in either storing or retrieving an array, at least the way I'm doing it. Can you not pass Arrays through localStorage, or am I doing something wrong?

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

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

发布评论

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

评论(1

明媚殇 2025-01-04 07:02:22

在获取项目或将项目保存到本地存储时,我通常使用 JSON.stringifyJSON.parse。我相信目前大多数实现仅支持字符串。

I typically use JSON.stringify and JSON.parse when getting or saving items to local storage. I believe most implementations only support strings at the moment.

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