对于我的项目,我一直试图仅检索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'});
}