當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript AngularFirestoreCollection.add方法代碼示例

本文整理匯總了TypeScript中angularfire2/firestore.AngularFirestoreCollection.add方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript AngularFirestoreCollection.add方法的具體用法?TypeScript AngularFirestoreCollection.add怎麽用?TypeScript AngularFirestoreCollection.add使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在angularfire2/firestore.AngularFirestoreCollection的用法示例。


在下文中一共展示了AngularFirestoreCollection.add方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: newOrder

newOrder(order: Order){
  this.ordersCollection.add(order)
  .then(res =>{
    console.log("success order added");
  })
  .catch(err => {
    console.log("error" + err);
  })
}
開發者ID:juan8831,項目名稱:ultimate-restaurant,代碼行數:9,代碼來源:order.service.ts

示例2: newPayment

newPayment(payment: Payment){
  this.paymentsCollection.add(payment)
  .then(res =>{
    console.log("success payment added");
  })
  .catch(err => {
    console.log("error" + err);
  })
}
開發者ID:juan8831,項目名稱:ultimate-restaurant,代碼行數:9,代碼來源:payment.service.ts

示例3: newSession

 private async newSession(user: firebase.User) {
   const ref: AngularFirestoreCollection<any> = await this.af.collection('sessions')
   console.log('user', user)
   const data = {
     name: user.displayName,
     date: new Date(),
     uid: user.uid
   }
   return await ref.add(data)
 }
開發者ID:troelslenda,項目名稱:shooter,代碼行數:10,代碼來源:session.service.ts

示例4: newInventoryItem

 newInventoryItem(inventoryItem: InventoryItem){
   this.inventoryItemsCollection.add(inventoryItem);
 }
開發者ID:juan8831,項目名稱:ultimate-restaurant,代碼行數:3,代碼來源:inventory.service.ts

示例5: saveRound

 private saveRound(session, round) {
   const ref: AngularFirestoreCollection<any> = this.af.collection(`sessions/${session.id}/round`);
   return ref.add(round);
 }
開發者ID:troelslenda,項目名稱:shooter,代碼行數:4,代碼來源:session.service.ts

示例6: newClient

 newClient(client: Client){
   this.clientsCollection.add(client);
 }
開發者ID:juan8831,項目名稱:ultimate-restaurant,代碼行數:3,代碼來源:client.service.ts

示例7: addTodo

 addTodo(todo: Todo) {
   return this.todosCollection.add(todo);
 }
開發者ID:DeCecco,項目名稱:Proyect,代碼行數:3,代碼來源:todo.service.ts

示例8: addHouse

 addHouse(house: House) {
   this.housesCollection.add(house);
 }
開發者ID:ChachaLim,項目名稱:CIHouse,代碼行數:3,代碼來源:store.service.ts

示例9: addMsg

 addMsg(msg) {
   this.messages.add(msg);
 }
開發者ID:mandarini,項目名稱:ngc-workshop,代碼行數:3,代碼來源:chat.service.ts

示例10: save

 save(comment: Comment) {
   const data = JSON.parse(JSON.stringify(comment));
   console.log(data);
   return this.itemsCollection.add(data);
 }
開發者ID:meumobi,項目名稱:infomobi,代碼行數:5,代碼來源:comments.service.ts


注:本文中的angularfire2/firestore.AngularFirestoreCollection.add方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。