我正在尝试从驻留在名为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))
答案 0 :(得分:0)
在我看来,您的authorId
是一个空字符串。请注意,无效路径中的双斜杠应位于“ posts”和“ userPosts”之间。