本文整理匯總了TypeScript中firebase.remove函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript remove函數的具體用法?TypeScript remove怎麽用?TypeScript remove使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了remove函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: constructor
constructor(public af:AngularFire) {
var ref = new Firebase(rootFirebase);
ref.remove();
this.questions = af.list('/questions');
this.questions.add({question: 'why?'});
this.questions.add({question: 'how?'});
}
示例2: constructor
constructor(public af:AngularFire) {
var ref = new Firebase(rootFirebase);
ref.remove();
this.question = af.object('/questions/1');
ref.child('/questions/1').set({title: 'how to firebase?'});
}
示例3: afterEach
afterEach((done:any) => {
ref.off();
ref.remove();
done();
});
示例4: delete
delete(event) {
let url = this._endpoint + event.$key;
let item = new Firebase(this._endpoint + event.$key);
item.remove();
}