我现在一直在尝试使用角度。我只是希望有人能帮助我为什么我不能像下面的代码那样获取本地存储数据。谢谢
[
{
"name": "firstname",
"email": "email@yahoo.com"
}
]
服务.js
getItem: function (item) {
var temp = localStorage.getItem(item);
if (!temp){
return [];
}
return JSON.Parse(temp);
}
控制器.js
profile.push({
name: 'firstname',
email: 'rmail@yahoo.com'
});
localStorage.setItem('profiles', JSON.stringify(profile));
console.log(service.getItem('name') + ' : this should output the name');
console.log(service.getItem('email') + ' : this should output the email');