我试图使用AngularFire Offline从firebase数据库中检索聊天。为此,我写了这个函数:
getChat(chatId: string, batch, lastTimestamp?) {
let query = {
orderByChild: 'timestamp',
limitToLast: batch
}
if(lastTimestamp) query['startAt'] = lastTimestamp;
return this.afo.list('Chats/' + chatId, {query: query})
}
但是当我试图运行它时,我收到了这个错误:
ERROR TypeError: queryFn is not a function
有谁知道我做错了什么?
我正在使用:
提前致谢!