我一直在开发我的第一个有聊天功能的离子角项目。我找不到关于angularfire 7.4.1的完整教程。我喜欢在消息显示中按时间戳排序聊天,但我找到的教程是2年前的,似乎不能工作。我使用我找到的最新教程中的代码,但它只随机显示集合。
我希望显示集合中的消息,并根据其时间戳进行排序。
4c8rllxm1#
在github repo.https://github.com/angular/angularfire的自述文件中有一个直接的例子。
const collection = collection(firestore, 'items'); this.item$ = collectionData(collection);
至于排序部分,使用js sort方法。https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort
1条答案
按热度按时间4c8rllxm1#
在github repo.https://github.com/angular/angularfire的自述文件中有一个直接的例子。
至于排序部分,使用js sort方法。https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort