本文整理汇总了TypeScript中angularfire2/database.FirebaseListObservable.update方法的典型用法代码示例。如果您正苦于以下问题:TypeScript FirebaseListObservable.update方法的具体用法?TypeScript FirebaseListObservable.update怎么用?TypeScript FirebaseListObservable.update使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类angularfire2/database.FirebaseListObservable
的用法示例。
在下文中一共展示了FirebaseListObservable.update方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
handler: data => {
if (isNew) {
this.ListaPlaca.push({ 'placa': data.placa, 'tipo' : data.tipo });
} else {
this.ListaPlaca.update(placa, { placa: data.placa });
}
}
示例2: save
private save(item: any) {
if (item.$key) {
return this.items.update(item.$key, { name: item.name });
} else {
return this.items.push({ name: item.name, url: item.url, fullPath: item.fullPath });
}
}
示例3: updateItem
updateItem() {
console.log(this.Form.value.baslik);
this.items.update(this.id, {baslik: this.Form.value.baslik,
yazi: this.Form.value.yazi,
img: this.Form.value.img,
yazar: this.Form.value.yazar});
}
示例4: incrementVoteValue
incrementVoteValue(result:Submit){
if(result == null){
console.log("Error");
this.nothingChecked = true;
}
else{
result.vote = result.vote + 1;
this.items.update(result.$key, result);
this.nothingChecked = false;
}
}
示例5: updateItem
//TODO
updateItem(key: string, newText: string) {
this.items.update(key, { text: newText });
}
示例6: updateTodo
updateTodo(key, newText) {
this.items.update(key, { text: newText });
}
示例7: updateTableData
updateTableData(key: string, allData: Table) {
this.tablesDB.update(key, { data: allData.data, count: allData.count });
}
示例8: updateTableName
updateTableName(key: string, name: string) {
this.tablesDB.update(key, { name: name });
}