如何更新 ngx-webstorage 键值?
How to update ngx-webstorage key value?
我有一个调用 webstorage 并检索键值存储实例的组件。更新时,存储的项目不会被更改。
@Component({
templateUrl: 'accomodation.component.html',
providers: [ItemService]
})
export class AccomodationComponent implements OnInit {
selectedItem = new Item();
constructor(private warehouse: Warehouse) {
}
ngOnInit() {
}
storeData(selectedItem: Item) {
this.warehouse.set('item',selectedItem);
}
updateData(updatedItem: Item) {
this.warehouse.set('item',updatedItem);
}
}
ngx-warehouse api 运行良好,这是 Google Chrome 的问题,它没有刷新 indexedDB 存储,经过数小时的调试我尝试了 mozilla 和看到它像魅力一样工作。
我有一个调用 webstorage 并检索键值存储实例的组件。更新时,存储的项目不会被更改。
@Component({
templateUrl: 'accomodation.component.html',
providers: [ItemService]
})
export class AccomodationComponent implements OnInit {
selectedItem = new Item();
constructor(private warehouse: Warehouse) {
}
ngOnInit() {
}
storeData(selectedItem: Item) {
this.warehouse.set('item',selectedItem);
}
updateData(updatedItem: Item) {
this.warehouse.set('item',updatedItem);
}
}
ngx-warehouse api 运行良好,这是 Google Chrome 的问题,它没有刷新 indexedDB 存储,经过数小时的调试我尝试了 mozilla 和看到它像魅力一样工作。