在我的 index.html 中,我使用保存了一些数据
localforage.getItem('data').then(function(value){
if (!value) {
localforage.setItem('data', ["test", "test test"]).then(function(value){
console.log(value); // this get's displayed on when the data is been created which is the first time the page is loaded.
}).catch(function(err){
console.log(err);
})
} else {
console.log(value); //after saving the value the first, it is always displayed here after page reloads
}
});
现在在加载第一个页面后加载的第二个页面中,这意味着必须保存“数据”,我尝试使用以下代码检索数据。
localforage.getItem('data').then(function(value){
console.log(value); // this prints null
}).catch(function(err) {
console.log(err);
});