我有一个带有一个文档ID的集合,之前已将其添加到Firestore中(请参见下图)。 我想知道如何检查该文档ID是否已经存在,以便可以说“文档已存在”
这是我到目前为止的代码:
void submit() async {
final snapShot =
await Firestore.instance.collection('books').document().get();
if (snapShot.exists) {
print('document exists');
} else {
print('document does not exists');
}
}