您需要执行几个步骤才能将此信息正确存储在 localStorage 中。然而,在我们深入代码之前,请注意 localStorage(在当前时间)不能保存除字符串之外的任何数据类型。您需要将数组序列化以进行存储,然后将其解析回来以对其进行修改。
步骤 1:
仅当您尚未在 localStoragesession
变量中存储序列化数组时,才应运行下面的第一个代码片段。
为确保正确设置 localStorage 并存储数组,请先运行以下代码片段:
var a = [];
a.push(JSON.parse(localStorage.getItem('session')));
localStorage.setItem('session', JSON.stringify(a));
上面的代码只应运行一次,并且仅当您尚未在 localStorage变量中存储数组时session
。如果您已经在执行此操作,请跳至第 2 步。
第2步:
像这样修改你的函数:
function SaveDataToLocalStorage(data)
{
var a = [];
// Parse the serialized data back into an aray of objects
a = JSON.parse(localStorage.getItem('session')) || [];
// Push the new data (whether it be an object or anything else) onto the array
a.push(data);
// Alert the array value
alert(a); // Should be something like [Object array]
// Re-serialize the array back into a string and store it in localStorage
localStorage.setItem('session', JSON.stringify(a));
}
这应该会为您解决其余的问题。当你解析出来时,它会变成一个对象数组。
希望这可以帮助。