gpt4 book ai didi

javascript - Angular ngStorage 自定义对象

转载 作者:行者123 更新时间:2023-12-03 08:15:46 26 4
gpt4 key购买 nike

我正在使用 ngStorage 来存储数据。我制作了一个名为游戏的自定义对象并将其存储。它存储为游戏,但当我刷新浏览器时,它会作为对象返回。

var games= $localStorage.games || {};

this.addGame = function(){
var newGame = new game("Game "+games.length);
$localStorage.games = newGame;
}

var game = function(title){
var title=title;
var player1;
var player2;
this.getTitle = function(){
return title;
}
this.setTitle = function(title){
this.title = title;
}
this.getPlayer1 = function(){
return player1;
}
this.setPlayer1 = function(player1){
this.player1 = player1;
}
this.getPlayer2 = function(){
return player2;
}
this.setPlayer1 = function(player1){
this.player2 = player2;
}
}

添加新游戏时,它会作为游戏存储在 LocalStorage 中,但是当我刷新 Bowser 并尝试获取游戏时。它作为对象数组而不是游戏返回。

最佳答案

您无法在 localStorage 中存储对象。技巧在于您可以像这样存储字符串并解析/取消解析它们。

var game = {
name: 'Super Metroid',
text: 'This is an awesome game!!!'
};

window.localStorage['game'] = JSON.stringify(game);

var superMetroid = JSON.parse(window.localStorage['game'] || '{}');

关于javascript - Angular ngStorage 自定义对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33944395/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com