Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I need to get all the records from a specific record to the last record in my database.

    ref.orderByChild("date").equalTo("19/11/2020 @ 19:50:29").on("child_added", (snapshot) => {
        console.log(snapshot.val());
    });

This query gives me the specified record but i need all the records from this one to the last one.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.7k views
Welcome To Ask or Share your Answers For Others

1 Answer

What you're looking for is called startAt, which starts at a given node and then returns all nodes until the end (or until the endAt condition you added).

So something like:

ref.orderByChild("date").startAt("19/11/2020 @ 19:50:29")

Note that your date format is not great for this type of sorting. You might want to consider a date format where the lexicographical order is chronological too, such as "2020-11-19T19:50:29".


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...