Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.6k views
in Technique[技术] by (71.8m points)

javascript - Vue Firebase: get query range from specific record to the last record

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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".


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...