Недавно я перешел с Cordova на API хранилища конденсаторов. И у меня очень странная проблема. На странице 1 я устанавливаю 4 значения для локального хранилища, но когда я получаю доступ к этим значениям на другой странице, одно значение отображается как нулевое.
Я пробовал много подходов, но значение user_id
всегда равно нулю.
Я убедился, что значение сохраняется в локальном хранилище.
Я также прикрепляю образы console.log после установки и извлечения значений из локального хранилища
storage.service.ts
async set(key: string, value: any): Promise<any> {
if(value == null || value == undefined) {
console.log("dont'do")
}
else {
try {
await Storage.set({
key: key,
value: value
});
return true;
} catch (reason) {
console.log(reason);
return false;
}
}
}
// to get a key/value pair
async get(key: string): Promise<any> {
try {
const result = await Storage.get({ key: key });
console.log('storageGET: ' + key + ': ' + result.value);
if (result != null) {
return result.value;
}
else {
console.log("null from service")
return null;
}
} catch (reason) {
console.log(reason);
return null;
}
}
page1.ts
this.storageService.set('user_id',data[i].id ).then(val => console.log(val))
this.storageService.set('email', data[i].email).then(val => console.log(val))
this.storageService.set('phone_number', data[i].mobile_no).then(val => console.log(val))
this.storageService.set('firebase_uid', data[i].firebase_uid).then(val => console.log(val))
page2.ts
this.storageService.get('user_id').then(val => console.log(val))
this.storageService.get('email').then(val => console.log(val))
this.storageService.get('phone_number').then(val => console.log(val))
this.storageService.get('firebase_uid').then(val => console.log(val))
Console.log после установки значений
console.log после получения значений локального хранилища