我需要做的就是在点击按钮时将状态值(上图中突出显示的子项)更新为1,我按照angluarfire2文档更新列表值并且没有得到预期的输出。 这是代码
confirm(item: Item){
const items = this.db2.list('/items');
items.update(item.key, { price: 69 }).then(()=>{
this.toast.show(`${item.name} confirmed two ! `);
this.navCtrl.setRoot('HomePage');
});
}
答案 0 :(得分:0)
也许你可以试试这个:
const items = this.db2.list('/list');
items.update(item.key, { price: 69, status:1 }).then(()=>{
this.toast.show(`${item.name} confirmed two ! `);
this.navCtrl.setRoot('HomePage');
});