您好我是离子应用程序开发的初学者,我正在使用下面的代码尝试存储和获取 json数据,但是当我调用get方法时使用下面的代码我得到了undefined消息可以帮助我一些人
save(){
var usertostore = {"id": 1234, "info":"fdsgf"};
this.storage.set("userLoged",JSON.stringify(usertostore ))
}
get(){
this.storage.get('userLoged').then(status=>{
var userInfo = status;
alert("info is-->"+userInfo.info)
});