주식회사 이웃사촌

fireStore 필드 업데이트 하기 본문

Android+FireBase

fireStore 필드 업데이트 하기

(주)이웃사촌 2021. 7. 16. 17:08

val washingtonRef = db.collection("cities").document("DC")

// Set the "isCapital" field of the city 'DC'
washingtonRef
       
.update("capital", true)
       
.addOnSuccessListener { Log.d(TAG, "DocumentSnapshot successfully updated!") }
       
.addOnFailureListener { e -> Log.w(TAG, "Error updating document", e) }

DocSnippets.kt


반응형
Comments