我们可以检索android中的auto id,它是由云函数使用云firestore触发器生成的

时间:2018-03-23 10:35:52

标签: android google-cloud-functions google-cloud-firestore

我使用firestore中的云功能存储了自动生成的id的文档创建。现在我需要在android.By中检索这些触发的自动id。使用这些我必须更新字段。有可能做这些过程吗?如果Possble我们如何在android

中检索该id
  

使用云功能

var addDoc = db.collection('deyaPayUsers').doc(userId).collection('Split').doc(userId).collection('ReceivedInvitation').add({
                          SenderName: FirstName,
                          Amount:ams,
                          SenderID:id,
                          ReceiverId:userId,
                          ReceiverPhoneNumber:userData.PhoneNumber,
                          SenderAutoId:splitid,
                         }).then(ref => {
                          console.log('Added document with id:', ref.id);// here auto - Id is created  I need to get
                          });

现在我需要在android中检索这些添加的文档ID。怎么做?

  

我的数据库结构

    /deyaPayUsers.     // collection
    /qT7ETq07uafXEMJmPJbgrOtHaoo1//authentication id
    /Split //collection
    /qT7ETq07uafXEMJmPJbgrOtHaoo1 // authentication - id
    /SentInvitations // collection
/auto -id // here the document is created  I need the auto id in android

0 个答案:

没有答案