Closed1
Cloud Functions でのFirestoreのデータの取り出し方
Cloud Funtions で Firestore のデータを取ってくる時、data().uid
という記述とdata()["uid"]
という記述の両方をみます。クライアント側の言語のSwiftなどでは後者の書き方しか通じないようなんですが、Cloud Functions 側ではどっちでも使えるよって認識でいいんでしょうか?
exports.createUser = functions.firestore
.document('users/{userId}')
.onCreate((snap, context) => {
// e.g. {'name': 'Marie', 'age': 66}
const newValue = snap.data();
const name = newValue.name;
});
このスクラップは2021/05/24にクローズされました