以下範例示範如何刪除文件、欄位和集合。
刪除文檔
若要刪除文檔,請使用以下特定於語言的delete()
方法:
Web modular API
使用deleteDoc()
方法:
import { doc, deleteDoc } from "firebase/firestore"; await deleteDoc(doc(db, "cities", "DC"));
Web namespaced API
使用delete()
方法:
db.collection("cities").doc("DC").delete().then(() => { console.log("Document successfully deleted!"); }).catch((error) => { console.error("Error removing document: ", error); });
迅速
使用delete()
方法:
db.collection("cities").document("DC").delete() { err in if let err = err { print("Error removing document: \(err)") } else { print("Document successfully removed!") } }
Objective-C
使用deleteDocumentWithCompletion:
方法:
[[[self.db collectionWithPath:@"cities"] documentWithPath:@"DC"] deleteDocumentWithCompletion:^(NSError * _Nullable error) { if (error != nil) { NSLog(@"Error removing document: %@", error); } else { NSLog(@"Document successfully removed!"); } }];
Kotlin+KTX
使用delete()
方法:
db.collection("cities").document("DC") .delete() .addOnSuccessListener { Log.d(TAG, "DocumentSnapshot successfully deleted!") } .addOnFailureListener { e -> Log.w(TAG, "Error deleting document", e) }
Java
使用delete()
方法:
db.collection("cities").document("DC") .delete() .addOnSuccessListener(new OnSuccessListener<Void>() { @Override public void onSuccess(Void aVoid) { Log.d(TAG, "DocumentSnapshot successfully deleted!"); } }) .addOnFailureListener(new OnFailureListener() { @Override public void onFailure(@NonNull Exception e) { Log.w(TAG, "Error deleting document", e); } });
Dart
使用delete()
方法:
db.collection("cities").doc("DC").delete().then( (doc) => print("Document deleted"), onError: (e) => print("Error updating document $e"), );
爪哇
使用delete()
方法:
Python
使用delete()
方法:
Python
使用delete()
方法:
C++
使用Delete()
方法:
db->Collection("cities").Document("DC").Delete().OnCompletion( [](const Future<void>& future) { if (future.error() == Error::kErrorOk) { std::cout << "DocumentSnapshot successfully deleted!" << std::endl; } else { std::cout << "Error deleting document: " << future.error_message() << std::endl; } });
Node.js
使用delete()
方法:
去
使用Delete()
方法:
PHP
使用delete()
方法:
統一
使用DeleteAsync()
方法:
DocumentReference cityRef = db.Collection("cities").Document("DC"); cityRef.DeleteAsync();
C#
使用DeleteAsync()
方法:
紅寶石
使用delete()
方法:
當您刪除文件時,Cloud Firestore 不會自動刪除其子集合中的文件。您仍然可以透過引用存取子集合文件。例如,即使您刪除了/mycoll/mydoc/mysubcoll/mysubdoc
/mycoll/mydoc
處的文檔。
不存在的祖先文件出現在控制台中,但不會出現在查詢結果和快照中。
如果要刪除文檔及其子集合中的所有文檔,則必須手動執行此操作。有關詳細信息,請參閱刪除集合。
刪除字段
若要從文件中刪除特定字段,請在更新文件時使用以下特定於語言的FieldValue.delete()
方法:
Web modular API
使用deleteField()
方法:
import { doc, updateDoc, deleteField } from "firebase/firestore"; const cityRef = doc(db, 'cities', 'BJ'); // Remove the 'capital' field from the document await updateDoc(cityRef, { capital: deleteField() });
Web namespaced API
使用FieldValue.delete()
方法:
var cityRef = db.collection('cities').doc('BJ'); // Remove the 'capital' field from the document var removeCapital = cityRef.update({ capital: firebase.firestore.FieldValue.delete() });
迅速
使用FieldValue.delete()
方法:
db.collection("cities").document("BJ").updateData([ "capital": FieldValue.delete(), ]) { err in if let err = err { print("Error updating document: \(err)") } else { print("Document successfully updated") } }
Objective-C
使用fieldValueForDelete:
方法:
[[[self.db collectionWithPath:@"cities"] documentWithPath:@"BJ"] updateData:@{ @"capital": [FIRFieldValue fieldValueForDelete] } completion:^(NSError * _Nullable error) { if (error != nil) { NSLog(@"Error updating document: %@", error); } else { NSLog(@"Document successfully updated"); } }];
Kotlin+KTX
使用FieldValue.delete()
方法:
val docRef = db.collection("cities").document("BJ") // Remove the 'capital' field from the document val updates = hashMapOf<String, Any>( "capital" to FieldValue.delete(), ) docRef.update(updates).addOnCompleteListener { }
Java
使用FieldValue.delete()
方法:
DocumentReference docRef = db.collection("cities").document("BJ"); // Remove the 'capital' field from the document Map<String,Object> updates = new HashMap<>(); updates.put("capital", FieldValue.delete()); docRef.update(updates).addOnCompleteListener(new OnCompleteListener<Void>() { // ... // ...
Dart
使用FieldValue.delete()
方法:
final docRef = db.collection("cities").doc("BJ"); // Remove the 'capital' field from the document final updates = <String, dynamic>{ "capital": FieldValue.delete(), }; docRef.update(updates);
爪哇
使用FieldValue.delete()
方法:
Python
使用firestore.DELETE_FIELD
方法:
Python
使用firestore.DELETE_FIELD
方法:
C++
使用FieldValue::Delete()
方法:
DocumentReference doc_ref = db->Collection("cities").Document("BJ"); doc_ref.Update({{"capital", FieldValue::Delete()}}) .OnCompletion([](const Future<void>& future) { /*...*/ });
Node.js
使用FieldValue.delete()
方法:
去
使用firestore.Delete
方法:
PHP
使用FieldValue::deleteField()
方法:
統一
使用FieldValue.Delete
方法:
DocumentReference cityRef = db.Collection("cities").Document("BJ"); Dictionary<string, object> updates = new Dictionary<string, object> { { "Capital", FieldValue.Delete } };
C#
使用FieldValue.Delete
方法:
紅寶石
使用firestore.field_delete
方法:
刪除集合
若要刪除 Cloud Firestore 中的整個集合或子集合,請擷取(讀取)集合或子集合中的所有文件並將其刪除。此過程會產生讀取和刪除成本。如果您有較大的集合,您可能需要小批量刪除文件以避免記憶體不足錯誤。重複此過程,直到刪除整個集合或子集合。
刪除集合需要協調無限數量的單獨刪除請求。如果您需要刪除整個集合,請僅從受信任的伺服器環境中執行此操作。雖然可以從行動/Web 用戶端刪除集合,但這樣做會對安全性和效能產生負面影響。
下面的程式碼片段有些簡化,不涉及錯誤處理、安全性、刪除子集合或最大化效能。要了解有關在生產中刪除集合的一種推薦方法的更多信息,請參閱刪除集合和子集合。
網路
// Deleting collections from a Web client is not recommended.
迅速
// Deleting collections from an Apple client is not recommended.
Objective-C
// Deleting collections from an Apple client is not recommended.
Kotlin+KTX
// Deleting collections from an Android client is not recommended.
Java
// Deleting collections from an Android client is not recommended.
Dart
不建議從客戶端刪除集合。
爪哇
Python
Python
C++
// This is not supported. Delete data using CLI as discussed below.
Node.js
去
PHP
統一
// This is not supported. Delete data using CLI as discussed below.
C#
紅寶石
使用 Firebase CLI 刪除數據
您也可以使用Firebase CLI刪除文件和集合。使用以下命令刪除資料:
firebase firestore:delete [options] <<path>>
使用控制台刪除數據
您可以從控制台的 Cloud Firestore 頁面刪除文件和集合。從控制台刪除文件會刪除該文件中的所有嵌套數據,包括任何子集合。
使用 TTL 策略刪除數據
TTL 策略將給定欄位指定為給定集合組中文件的過期時間。 TTL 刪除操作會計入您的文件刪除費用。
有關設定 TTL 的信息,請參閱使用 TTL 策略管理資料保留。
有關錯誤代碼以及如何解決刪除資料時的延遲問題的更多信息,請查看故障排除頁面。
使用 Dataflow 刪除數據
Dataflow 是對 Firestore 資料庫進行大量作業的絕佳工具。適用於資料流的 Firestore 連接器介紹部落格文章提供了刪除集合組中所有文件的範例。