如何获得子收款电子邮件

时间:2019-12-18 23:51:10

标签: javascript firebase automation google-cloud-firestore

所以我当前正在尝试访问我访问的电子邮件。它只显示完整的字符串,但我完全不确定如何只获取电子邮件

n = -1
while True:
    n += 1
    for k in range(n):
        if k**2 + 8*((2*k*n) + n**2 + (2*n) + (2*k) + 1) == ((k + n + 1)**2) + 7*((2*k*n) + n**2 + (2*n) + (2*k) + 1):
            pass # Do more checking not pertaining to this question

它打印出:

function addLead() {
   db.collection('entities')
   .doc('0') // change to the current user id 
   .get().then((user)=>{
       if(user.exists){
           // now you can do something with user
           console.log(user.data())
       }
   });
  };  
addLead();

每次我收到并使用此电子邮件时,我希望它选择下一个ID,即“ 1”

因此它将转到“ entities / 0 / email”,然后一旦使用,请转到“ entities / 1 / email”等

希望有人可以提供帮助

1 个答案:

答案 0 :(得分:0)

所以我想通了,您必须使用正常过程,但要将(doc)传递给函数:

  db.collection('entities').doc("0").get().then(function(doc) {
    const passName = doc.data().pass;
    console.log(doc.data().pass);

希望这会帮助陷入困境的任何人, 转到实体,将其打开,找到ID为0的实体,然后获取详细信息。