当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript FirebaseListObservable.update方法代码示例

本文整理汇总了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 });
   }
 }
开发者ID:iacapuca,项目名称:mausmotoristas,代码行数:7,代码来源:historico.ts

示例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 });
   }
 }
开发者ID:joaorobertoifrn,项目名称:ionicfirebaseauth,代码行数:7,代码来源:contact-service.ts

示例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});
     
   }
开发者ID:ardabozok,项目名称:Project,代码行数:8,代码来源:component.edit.ts

示例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;
   }
 }
开发者ID:TimGoonan,项目名称:Slipslo,代码行数:11,代码来源:longtermvote.component.ts

示例5: updateItem

 //TODO
 updateItem(key: string, newText: string) {
   this.items.update(key, { text: newText });
 }
开发者ID:ng-classroom,项目名称:demoapp11,代码行数:4,代码来源:home-page.component.ts

示例6: updateTodo

 updateTodo(key, newText) {
   this.items.update(key, { text: newText });
 }
开发者ID:costaivo,项目名称:AngularJs2-AdManager,代码行数:3,代码来源:todo.service.ts

示例7: updateTableData

 updateTableData(key: string, allData: Table) {
   this.tablesDB.update(key, { data: allData.data, count: allData.count });
 }
开发者ID:SimonFolger,项目名称:angular-card-table,代码行数:3,代码来源:app.component.ts

示例8: updateTableName

 updateTableName(key: string, name: string) {
   this.tablesDB.update(key, { name: name });
 }
开发者ID:SimonFolger,项目名称:angular-card-table,代码行数:3,代码来源:app.component.ts


注:本文中的angularfire2/database.FirebaseListObservable.update方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。