본문 바로가기
Development Solutions/Flutter & Dart

[flutter][firebase] How to sort data from snapshot taken from DB (DB에서 가져온 snapshot에서 데이터 정렬하는 방법)

by studio ODOC 2021. 11. 4.
반응형

[flutter][firebase]

How to sort data from snapshot taken from DB

(DB에서 가져온 snapshot에서 데이터 정렬하는 방법)

 

 

 

앱을 만들때 firebase에서 데이터를 갖고 오고 싶다면

 

보통 FirebaseFirestore에서 인스턴스를 가져와

컬렉션, 도큐먼트에 접근한다.

 

이때 특정한 애트리뷰트에 대해 정렬하고 싶다면?

아래와 같이 orderBy를 사용하자.

 

(If you want to get data from firebase when creating an app



I usually get the instance from FirebaseFirestore

Access to collections and documents.



What if you want to sort on a specific attribute?
)

 

 

FirebaseFirestore.instance
          .collection('stores')
          .orderBy('rating',descending: true)
          .snapshots(),

 

반응형