使用Ionic 3从Firebase删除数据

时间:2018-12-17 00:41:51

标签: javascript angular firebase ionic-framework firebase-realtime-database

我想从firebase中删除数据,但是所有我发现的文档都使用.remove()函数,如我在此处的代码片段所示。但这在Ionic 3上不起作用。功能是否已更改或我没有看到的重点是什么?

selectBook(indexOfBook : Book){

    this.actionSheetCtrl.create({
        title: indexOfBook.nameOfBook,
        buttons:[{
               text:'Edit',
               handler: () =>{
                   // TODO:Send the user to EditPage
               }

        },
        {
             text:'Delete',
             role: 'destructive',
             handler: () => {
                 this.getBookRef$.remove(indexOfBook.key);//**************************************
             }
        },
        {
            text:'Cancel',
            role:'cancel',
            handler: () =>{
                   console.log("The user has selected the cancel button");
            }
        }


        ]


    }).present();

}

0 个答案:

没有答案