Cloud Firestore มีฟังก์ชันการค้นหาที่มีประสิทธิภาพสำหรับการระบุ
เอกสารที่คุณต้องการเรียกจากคอลเล็กชัน คุณสามารถใช้คำค้นหาเหล่านี้
ด้วย get()
หรือ addSnapshotListener()
ตามที่อธิบายไว้ใน รับ
ข้อมูล
คำสั่งซื้อและจำกัดข้อมูล
โดยค่าเริ่มต้น การค้นหาจะเรียกเอกสารทั้งหมดที่ตรงกับคำค้นหาตามลำดับตัวอักษรจากน้อยไปมาก
เรียงลำดับตามรหัสเอกสาร คุณสามารถระบุลำดับการจัดเรียงข้อมูลได้โดยใช้
orderBy()
และคุณสามารถจำกัดจำนวนเอกสารที่เรียกดูได้โดยใช้
limit()
หากคุณระบุ limit()
ค่าต้องมากกว่าหรือเท่ากับ
เป็น 0
เช่น ค้นหาตามตัวอักษร 3 เมืองแรก กับ
Web
import { query, orderBy, limit } from "firebase/firestore"; const q = query(citiesRef, orderBy("name"), limit(3));
Web
citiesRef.orderBy("name").limit(3);
Swift
citiesRef.order(by: "name").limit(to: 3)
Objective-C
[[citiesRef queryOrderedByField:@"name"] queryLimitedTo:3];
Kotlin+KTX
citiesRef.orderBy("name").limit(3)
Java
citiesRef.orderBy("name").limit(3);
Dart
final citiesRef = db.collection("cities"); citiesRef.orderBy("name").limit(3);
Java
Python
Python
C++
cities_ref.OrderBy("name").Limit(3);
Node.js
Go
PHP
PHP
สำหรับข้อมูลเพิ่มเติมเกี่ยวกับการติดตั้งและสร้างไคลเอ็นต์ Cloud Firestore โปรดดูที่ ไลบรารีไคลเอ็นต์ Cloud Firestore รายการ
Unity
Query query = citiesRef.OrderBy("Name").Limit(3);
C#
Ruby
นอกจากนี้คุณยังสามารถเรียงลำดับจากมากไปหาน้อยเพื่อให้ได้ 3 เมืองสุดท้าย ดังนี้
Web
import { query, orderBy, limit } from "firebase/firestore"; const q = query(citiesRef, orderBy("name", "desc"), limit(3));
Web
citiesRef.orderBy("name", "desc").limit(3);
Swift
citiesRef.order(by: "name", descending: true).limit(to: 3)
Objective-C
[[citiesRef queryOrderedByField:@"name" descending:YES] queryLimitedTo:3];
Kotlin+KTX
citiesRef.orderBy("name", Query.Direction.DESCENDING).limit(3)
Java
citiesRef.orderBy("name", Direction.DESCENDING).limit(3);
Dart
final citiesRef = db.collection("cities"); citiesRef.orderBy("name", descending: true).limit(3);
Java
Python
Python
C++
cities_ref.OrderBy("name", Query::Direction::kDescending).Limit(3);
Node.js
Go
PHP
PHP
สำหรับข้อมูลเพิ่มเติมเกี่ยวกับการติดตั้งและสร้างไคลเอ็นต์ Cloud Firestore โปรดดูที่ ไลบรารีไคลเอ็นต์ Cloud Firestore รายการ
Unity
Query query = citiesRef.OrderByDescending("Name").Limit(3);
C#
Ruby
และยังเรียงลำดับตามช่องต่างๆ ได้ด้วย เช่น ถ้าต้องการสั่งซื้อตาม และภายในแต่ละรัฐตามลำดับประชากรตามลำดับจากมากไปน้อย ดังนี้
Web
import { query, orderBy } from "firebase/firestore"; const q = query(citiesRef, orderBy("state"), orderBy("population", "desc"));
Web
citiesRef.orderBy("state").orderBy("population", "desc");
Swift
citiesRef .order(by: "state") .order(by: "population", descending: true)
Objective-C
[[citiesRef queryOrderedByField:@"state"] queryOrderedByField:@"population" descending:YES];
Kotlin+KTX
citiesRef.orderBy("state").orderBy("population", Query.Direction.DESCENDING)
Java
citiesRef.orderBy("state").orderBy("population", Direction.DESCENDING);
Dart
final citiesRef = db.collection("cities"); citiesRef.orderBy("state").orderBy("population", descending: true);
Java
Python
Python
C++
cities_ref.OrderBy("state").OrderBy("name", Query::Direction::kDescending);
Node.js
Go
PHP
PHP
สำหรับข้อมูลเพิ่มเติมเกี่ยวกับการติดตั้งและสร้างไคลเอ็นต์ Cloud Firestore โปรดดูที่ ไลบรารีไคลเอ็นต์ Cloud Firestore รายการ
Unity
Query query = citiesRef.OrderBy("State").OrderByDescending("Population");
C#
Ruby
คุณรวมตัวกรอง where()
กับ orderBy()
และ limit()
ได้ ใน
ตัวอย่างต่อไปนี้ ข้อความค้นหาจะกำหนดเกณฑ์จำนวนประชากร จัดเรียงตามประชากร
ตามลำดับจากน้อยไปมาก และแสดงผลเฉพาะ 2-3 รายการแรกที่เกิน
เกณฑ์:
Web
import { query, where, orderBy, limit } from "firebase/firestore"; const q = query(citiesRef, where("population", ">", 100000), orderBy("population"), limit(2));
Web
citiesRef.where("population", ">", 100000).orderBy("population").limit(2);
Swift
citiesRef .whereField("population", isGreaterThan: 100000) .order(by: "population") .limit(to: 2)
Objective-C
[[[citiesRef queryWhereField:@"population" isGreaterThan:@100000] queryOrderedByField:@"population"] queryLimitedTo:2];
Kotlin+KTX
citiesRef.whereGreaterThan("population", 100000).orderBy("population").limit(2)
Java
citiesRef.whereGreaterThan("population", 100000).orderBy("population").limit(2);
Dart
final citiesRef = db.collection("cities"); citiesRef .where("population", isGreaterThan: 100000) .orderBy("population") .limit(2);
Java
Python
Python
C++
cities_ref.WhereGreaterThan("population", FieldValue::Integer(100000)) .OrderBy("population") .Limit(2);
Node.js
Go
PHP
PHP
สำหรับข้อมูลเพิ่มเติมเกี่ยวกับการติดตั้งและสร้างไคลเอ็นต์ Cloud Firestore โปรดดูที่ ไลบรารีไคลเอ็นต์ Cloud Firestore รายการ
Unity
Query query = citiesRef .WhereGreaterThan("Population", 2500000) .OrderBy("Population") .Limit(2);
C#
Ruby
อย่างไรก็ตาม หากคุณมีตัวกรองที่มีการเปรียบเทียบช่วง (<
, <=
, >
, >=
)
ลำดับแรกของคุณต้องอยู่ในฟิลด์เดียวกัน โปรดดูรายการ orderBy()
ข้อจำกัดได้ที่ด้านล่าง
ข้อจำกัด
โปรดทราบข้อจำกัดต่อไปนี้สำหรับวลี orderBy()
- นอกจากนี้ อนุประโยค
orderBy()
ยังกรองการมีอยู่ของช่องที่กำหนดด้วย ชุดผลลัพธ์จะไม่รวมเอกสารที่ไม่มีฟิลด์ที่กำหนด
orderBy
และการมีอยู่
เมื่อคุณเรียงลำดับข้อความค้นหาตามฟิลด์ที่กำหนด ข้อความค้นหาสามารถแสดงผลเฉพาะ เอกสารที่มีฟิลด์ "เรียงลำดับตาม"
ตัวอย่างเช่น คำค้นหาต่อไปนี้จะไม่แสดงเอกสารใดๆ ที่แท็ก
ไม่ได้กำหนดฟิลด์ population
แม้ว่าจะตรงกับตัวกรองการค้นหาอื่นก็ตาม
Java
db.collection("cities").whereEqualTo("country", “USA”).orderBy(“population”);
ผลกระทบที่เกี่ยวข้องจะใช้กับอสมการ การค้นหาที่มีตัวกรองอสมการ
ในฟิลด์หนึ่งหมายถึงการจัดลำดับตามฟิลด์นั้นด้วย ดังต่อไปนี้
การค้นหาไม่แสดงเอกสารที่ไม่มีช่อง population
ด้วยซ้ำ
หาก country = USA
ในเอกสารนั้น ในการแก้ไขเบื้องต้น คุณสามารถดำเนินการ
การค้นหาแยกต่างหากสำหรับลำดับแต่ละรายการ หรือคุณจะกำหนดค่าให้กับช่องทั้งหมดก็ได้
ที่คุณสั่งซื้อ
Java
db.collection(“cities”).where(or(“country”, USA”), greaterThan(“population”, 250000));
ข้อความค้นหาข้างต้นมีการเรียงลำดับตามโดยนัยของอสมการและ เทียบเท่ากับรายการต่อไปนี้
Java
db.collection(“cities”).where(or(“country”, USA”), greaterThan(“population”, 250000)).orderBy(“population”);