Firestore로 배열 업데이트
Firestore는 전체 배열을 덮어쓸 필요 없이 문서 내의 배열을 업데이트하는 간단한 방법을 제공합니다.
다음 함수는 배열 업데이트를 활성화합니다.
예제 코드:
// Array union firebase.firestore() .collection('proprietary') .doc(docID) .update({ sharedWith: firebase.firestore.FieldValue.arrayUnion({ who: "[email protected]", when: new Date() }) }) // Array remove firebase.firestore() .collection('proprietary') .doc(docID) .update({ sharedWith: firebase.firestore.FieldValue.arrayRemove({ who: "[email protected]", when: new Date() }) })
이러한 함수는 간단하고 효율적인 관리 방법을 제공합니다. Firestore의 어레이를 통해 개발자는 전체 어레이에 영향을 주지 않고 대상 업데이트를 수행할 수 있습니다.
위 내용은 전체 배열을 덮어쓰지 않고 Firestore 문서 내에서 배열을 효율적으로 업데이트하려면 어떻게 해야 하나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!