Node Js Firestore使用空格访问数据库值

时间:2018-06-07 14:13:13

标签: javascript node.js google-cloud-firestore

节点Js的新手期待这很容易!

在带有Firestore的节点JS中我想访问“显示名称”:James,“年龄”:22

年龄没有空间所以我可以放

const newValue = doc.data();
             const age = newValue.Age;

但显示名称包含空格 你怎么输入这个?

 const displayName = newValue.displayName;

1 个答案:

答案 0 :(得分:1)

您需要使用[]表示法来获取该物业。

所以:

const displayName = newValue["display name"];