如何仅检索Firebase文档集合的documentID

时间:2019-10-23 19:10:51

标签: javascript firebase ionic-framework google-cloud-firestore

对于我的项目,我一直试图仅检索JobPostingsID来创建Likes数组。可以在这里看到:

likes: firestore.FieldValue.arrayUnion(this.crudService.retrieve_JobPostingsID())

当我尝试从JobPostings表中检索DocumentID时,它将检索包括ID在内的整个对象。我只想将JobPosting的实际documentID返回此数组,而不是该对象。有什么办法吗?

 retrieve_JobPostingsID(){
      const ref = this.firestore.collection('JobPostings');
      return ref.valueChanges({idField: 'eventId'});
  }

0 个答案:

没有答案