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


TypeScript AngularFirestore.createId方法代碼示例

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


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

示例1: addPrestation

 addPrestation(item: Prestation): Promise<any> {
   const id = this.afs.createId();
   const prestation = { id, ...item };
   return this.itemsCollection.doc(id).set(prestation).catch((e) => {
     console.log(e);
   });
 }
開發者ID:ChristopheGueroult,項目名稱:crm-init-bordeaux,代碼行數:7,代碼來源:prestation.service.ts

示例2: addOrderPrice

 addOrderPrice(t: any) {
   let id = this.db.createId();
   let pastOrder = new PastOrder();
   pastOrder.id = "past-order/" + id
   pastOrder.orders[t.detail] = parseFloat(parseFloat(t.price + "").toFixed(2))
   pastOrder.restaurant = t.description
   this.db.collection<PastOrder>("past-order").doc(id).set(JSON.parse(JSON.stringify(pastOrder)));
 }
開發者ID:liujidon,項目名稱:slunch,代碼行數:8,代碼來源:past-order.service.ts

示例3: createItem

  private createItem(item: Widget, userId: string): Promise<void> {
    //
    const doc = this.toFirestoreDoc(item);
    const dateNow = Date().toString();
    doc.id = this.afs.createId();
    const recordToSet: FirestoreDoc = {
      ...doc,
      sysDateCreatedOn: dateNow,
      sysDateUpdatedOn: dateNow,
    };

    return this.firestoreCollection(userId)
      .doc(recordToSet.id)
      .set(recordToSet);
  }
開發者ID:tja4472,項目名稱:ngrx-ionic-angularfire,代碼行數:15,代碼來源:widget.data.service.ts

示例4: addWithId

 public addWithId(path: string, data: any): Promise<void>  {
   data.id = this.angularFirestore.createId();
   return this.angularFirestore.doc<any>(`${path}/${data.id}`).set(data);
 }
開發者ID:adolfolopez88,項目名稱:Store,代碼行數:4,代碼來源:firestore-generic.service.ts

示例5: create

 create(contact: ContactProfile): Promise<void> {
   const id = this.af.createId();
   contact._id = id;
   const data = JSON.parse(JSON.stringify(contact));
   return this.itemsCollection.doc(id).set(data);
 }
開發者ID:meumobi,項目名稱:infomobi,代碼行數:6,代碼來源:contacts.service.ts

示例6: getId

 getId() {
   return this.afs.createId();
 }
開發者ID:liberant,項目名稱:lproProducer,代碼行數:3,代碼來源:firestore.ts


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