Firestore pagination - Is there any query compatible with firebase's limitToLast?

前端 未结 5 1426
执念已碎
执念已碎 2020-12-18 09:46

Is there a way to implement back pagination with firestore? I am struggling to implement pagination with firestore, and there are limited firestore queries for it. Forward p

5条回答
  •  心在旅途
    2020-12-18 10:00

    The equivalent to the limitToLast(...) operation from the Firebase Realtime Database in Cloud Firestore is to order the data descending (which is possible in Firestore) and then just limit(...). If you're having problems implement this, update your question to show what you've done.

    I agree that this is a sub-optimal API for back-pagination, since you're receiving the items in reverse order.

提交回复
热议问题