How to query firebase for property with specific value inside all children

后端 未结 3 1491
抹茶落季
抹茶落季 2020-11-29 23:11

I have this data structure, where todos are organized to follow path /todos/uid/

{
  \"metausers\" : {
    \"simplelogin:1\" : {
      \"displayName\" : \"Jo         


        
3条回答
  •  广开言路
    2020-11-29 23:48

    All data in Firebaase can be accessed by URLs. If you go to your the Firebase dashboar to view your data model (Forge) and click on the property you are interested in you would be redirected to a URL by which you can access this particular data, e.g. https://myapp.firebaseio.com/todos/simplelogin:1/-JUAg9rVemiNQykfvvHs/private. Keeping this in mind you can access this data with AngularFire.

提交回复
热议问题