0

我使用聚合物和 firebase,我想知道如何在对象内创建对象数组。

就像上面的对象

我想要嵌套数据,例如对象中的组单个对象,其中我们有成员和其中的名称

      this.$.query.ref.push({
        name: this.$.crewName.value,
        description: this.$.crewDescription.value,
        createddate: new Date().toString(),
        creator: this.$.createcrewlogin.user.uid,
        slug: sluggedname
      });

使用像这样的简单推送方法。我该如何实现

4

1 回答 1

2

当您从 JavaScript 写入 Firebase 数据库时,您会传入一个标准 JSON 对象。这意味着您可以将对象嵌套在传递给的对象内push()

  this.$.query.ref.push({
    name: this.$.crewName.value,
    description: this.$.crewDescription.value,
    createddate: new Date().toString(),
    creator: this.$.createcrewlogin.user.uid,
    slug: sluggedname,
    subobject: {
      techpioneers: true,
      womentechmakers: true
    }
  });
于 2017-01-21T04:34:30.193 回答