如何使用angularfire2

时间:2018-04-30 15:18:17

标签: ionic3 angularfire2

All i need to do is update the value of status into 1 on a button click

我需要做的就是在点击按钮时将状态值(上图中突出显示的子项)更新为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');
});

}

1 个答案:

答案 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');
});