从子集合中的文档获取快照时的无效路径

时间:2020-07-29 00:35:51

标签: flutter google-cloud-firestore

我正在尝试从驻留在名为userPosts的子集合中的文档创建文档快照,该子集合位于位于称为posts的主集合中的文档中

DocumentSnapshot doc = await Firestore.instance.collection('posts').document(authorId).collection('userPosts').document(postID).get();
//code stops here and the followng exception is raised:

发生异常。 PlatformException(PlatformException(错误,无效路径(posts // userPosts / MyhwixjFnOV0vh2jt4Qo)。路径中不得包含//,null))

1 个答案:

答案 0 :(得分:0)

在我看来,您的authorId是一个空字符串。请注意,无效路径中的双斜杠应位于“ posts”和“ userPosts”之间。