我需要按日期排序项目,但显然我需要降序排序以正确顺序显示帖子......

import {
  AngularFireDatabase
} from 'angularfire2/database';
import 'rxjs/add/operator/map';

/*
  Generated class for the FirebaseProvider provider.

  See https://angular.io/docs/ts/latest/guide/dependency-injection.html
  for more info on providers and Angular 2 DI.
*/
@Injectable()
export class FirebaseProvider {

  constructor(public afd: AngularFireDatabase) {}


  getPostsItems() {
    return this.afd.list('/Posts/', {
      query: {
        orderByChild: "date",
      }
    });

  }


此查询返回升序,我需要一个降序,Firebase web 中未对此进行解释。

我需要哪些查询?

最佳答案

一种方法可能是颠倒组件模板中的顺序。首先,您可以直接在组件中获得一个帖子列表:
posts.component.ts

    export class PostsComponent {
      posts: FirebaseListObservable<any>;

      constructor(db: AngularFireDatabase) {
        this.posts = db.list('/posts', {
          query: {
            orderByChild: 'date'
          }
        });
      }
    }
然后,您可以使用 reverse 方法来反转模板中帖子的顺序:
posts.component.html
    <div *ngFor="let post of (posts | async)?.slice().reverse()">
      <h1>{{ post.title }}</h1>
    </div>

关于sorting - firebase 和 Ionic 2 上的降序 orderByChild(),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44814165/

10-12 16:03