Firebase Cloud Firestore : Invalid collection reference. Collection references must have an odd number of segments

前端 未结 5 1891
野的像风
野的像风 2020-12-01 18:02

I have the following code and getting an error :

Invalid collection reference. Collection references must have an odd number of segments

<

5条回答
  •  南笙
    南笙 (楼主)
    2020-12-01 18:27

    Then you need change this:

    db.collection("app/users/" + uid + "/notifications")...
    

    for this:

    db.collection("app").document("users").collection(uid).document("notifications")
    

    You welcome ;)

提交回复
热议问题