私は最近角度を使用しようとしています。以下のコードのように localstorage データを取得できない理由を誰かが助けてくれることを願っています。ありがとう
[
{
"name": "firstname",
"email": "email@yahoo.com"
}
]
service.js
getItem: function (item) {
var temp = localStorage.getItem(item);
if (!temp){
return [];
}
return JSON.Parse(temp);
}
controller.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');