我正在使用Ionic框架作为在线课程的一部分,我将学习AngularJS以及许多其他对Web开发人员有用的工具。而且,作为一种先进的初学者类型,我被困住了。在这个单元中,我们已经学会利用本地存储在本地保存数据,因此即使应用程序关闭后我们也可以获取我们喜欢的项目。但是,我无法让它工作。
所以这就是我所做的:
我可以将数据导入本地存储。我可以附加数据。我这样做是使用这个函数:
$scope.favoriteData = $localStorage.getObject('favorites', '[]');
$scope.addFavorite = function (index) {
console.log('Current Favorites', $scope.favoriteData);
$scope.favoriteData = Object.keys($scope.favoriteData).map(function(k) { return $scope.favoriteData[k] });
console.log ($scope.favoriteData);
$scope.storeVar = $scope.favoriteData.push("'{id':" + index + '},');
console.log ($scope.favoriteData);
$localStorage.storeObject('favorites', $scope.favoriteData);
console.log('Added Favorite', $scope.favoriteData)
};
在本地存储中,这会产生以下条目:
favorites: ["'{id':0},","'{id':1},"]
到目前为止一切顺利。但是,这没用。因为我需要这个对象具有以下格式:
favorites: [{'id':0}, {'id':1}]
等等。此外,我不应该添加重复项。我在其他地方有一种功能,但我仍然坚持如何结合这两个功能。
我的功能是:
function (index) {
for (var i = 0; i < favorites.length; i++) {
if (favorites[i].id == index)
return;
}
favorites.push({
id: index
});
};
问题在于,我不明白它是如何做到的。
那么,请帮忙?
编辑#1:
在@Muli和@ It-Z的帮助下,我现在正在使用以下代码:
$scope.favoriteData = $localStorage.getObject('favorites', '[]');
$scope.addFavorite = function (index) {
console.log('Current Favorites', $scope.favoriteData);
$scope.favoriteData = Object.keys($scope.favoriteData).map(function(k) { return $scope.favoriteData[k] });
console.log ($scope.favoriteData);
for (var i = 0; i < favorites.length; i++) {
if (favorites[i].id == index) {
console.log ("Found duplicate id " + favorites[i].id);
return;
}
}
$scope.storeVar = $scope.favoriteData.push({id: index});
console.log ($scope.favoriteData);
$localStorage.storeObject('favorites', $scope.favoriteData);
console.log('Added Favorite', $scope.favoriteData)
};
但是,这不起作用,因为使用不存在的键favorites
,它不起作用并且给我一个错误。所以我需要实现一个检查,如果密钥存在,如果它不存在,那么它应该创建一个。我查看了this问题,但它没有用,主要是因为我必须使用services.js
中的以下工厂来访问本地存储:
.factory('$localStorage', ['$window', function ($window) {
return {
store: function (key, value) {
$window.localStorage[key] = value;
},
get: function (key, defaultValue) {
return $window.localStorage[key] || defaultValue;
},
storeObject: function (key, value) {
$window.localStorage[key] = JSON.stringify(value);
},
getObject: function (key, defaultValue) {
return JSON.parse($window.localStorage[key] || defaultValue);
}
}
}])
所以这就是我现在所处的位置。我仍然坚持下去。或者再次卡住了。我不知道。
答案 0 :(得分:2)
首先,这一行:
$scope.storeVar = $scope.favoriteData.push("'{id':" + index + '},');
应该是:
$scope.storeVar = $scope.favoriteData.push({id: index});
这是因为在您想要对象时,在原始行中您将字符串推入favoriteData
。
如果你想首先检查重复项,你可以选择这样的事情:
$scope.favoriteData = $localStorage.getObject('favorites', []);
$scope.addFavorite = function (index) {
console.log('Current Favorites', $scope.favoriteData);
$scope.favoriteData = Object.keys($scope.favoriteData).map(function(k) { return $scope.favoriteData[k] });
console.log ($scope.favoriteData);
for (var i = 0; i < favorites.length; i++) {
if (favorites[i].id == index) {
console.log ("Found duplicate id " + favorites[i].id);
return;
}
}
$scope.storeVar = $scope.favoriteData.push({id: index});
console.log ($scope.favoriteData);
$localStorage.storeObject('favorites', $scope.favoriteData);
console.log('Added Favorite', $scope.favoriteData)
};
答案 1 :(得分:2)
$ localStorage为您处理序列化和反序列化,因此不需要$scope.favoriteData = $localStorage.getObject('favorites', '[]');
您可以致电:
$scope.favoriteData = $localStorage.favoriteData || {/*Defaults object*/};
同样可以保存数据。使用点表示法。
检查demo。
至于重复:只是像平常一样自己处理它们。当你完成调用$localStorage.mySet = modifiedSet
(修改后的集合是标准的JS对象)。
注意:这假设您使用ngStorage。