节点Js的新手期待这很容易!
在带有Firestore的节点JS中我想访问“显示名称”:James,“年龄”:22
年龄没有空间所以我可以放
const newValue = doc.data();
const age = newValue.Age;
但显示名称包含一个空格如何输入?
const displayName = newValue.displayName;
下面的是从https://firebase.google.com/docs/firestore/extend-with-functions
复制的它只是没有一个双字数据库值的例子
exports.createUser = functions.firestore
.document('users/{userId}')
.onCreate((snap, context) => {
// Get an object representing the document
// e.g. {'name': 'Marie', 'age': 66}
const newValue = snap.data();
// access a particular field as you would any JS property
const name = newValue.name;
// perform desired operations ...
});
答案 0 :(得分:0)
如果您必须在文档字段名称中有空格(这不是一个好主意),请按以下方式访问它:
const data = doc.data()
const value = data['Field name with spaces']