问题:如何在不重新查询之前检索(和绑定)的结果的情况下将分页(无限滚动)添加到绑定的 Firestore VuexFire引用?
背景:我目前正在使用 VuexFire firestore 绑定来填充时间轴,以作为操作,在我的 Vuex 商店中进行最受好评的帖子,如下所示:
fillTimeLine: firebaseAction(
({ bindFirebaseRef }) => {
bindFirebaseRef(
'timelineResults',
db
.collection('POSTS')
.orderBy('combined_vote_score', 'desc')
.limit(30)
)
})
这会将我的 firestore 数据库中评分最高的 30 个帖子检索到我的 vuex 状态变量timelineResults。
要添加分页,我发现了一个像这样的非 VuexFire 示例: 如何按 Firestore 中的项目数分页或无限滚动?
var first = db.collection("....").orderBy("price", "desc").limitTo(20);
return first.get().then(function (documentSnapshots) {
// Get the last visible document
var lastVisible = documentSnapshots.docs[documentSnapshots.docs.length-1];
console.log("last", lastVisible);
// Construct a new query starting at this document,
// get the next 25 cities.
var next = db.collection("....")
.orderBy("price", "desc")
.startAfter(lastVisible)
.limit(20);
});
有没有办法将这两个示例组合起来并将结果附加到绑定引用?