感谢您的回复。我有一个问题,
如果我检查Firestore数据库,我会看到三列,我看到了Firestore的文档。
如何在单个文档下创建多个条目?我要创建如下
collection
/ \
Document1 Document2
/ \ / \
Record1 Record2 Record1 Record2
对于创建集合,我使用下面的代码,它创建了集合“ testing”,文档“ subjectID”。我添加了字段f1,f2,f3,f4,f5。
let docRef = this.dbManager.collection('testing').doc(subjectId);
let setAlan = docRef.set(myEntryEntity.toJSON());
public toJSON(): any {
let returnJSON = {
"entry_id": this.entry_id,
"subject_id": 'Test',
"entry_date": this.entry_date,
"questionnaire": this.questionnaire,
"entry_start_timestamp": this.entry_start_timestamp,
"entry_end_timestamp": this.entry_end_timestamp,
"entry_complete": this.entry_complete,
//"responses": this.responses,
"last_answered_question" : this.last_answered_question,
"entry_status" : this.entry_status
}
return returnJSON;
}
1)我无法在“ subjectID”下创建另一个记录,它总是更新现有的“ subjectID”记录。 2)如何获取“测试”集中的所有文档。