所以我遇到了一个问题,即聚合物1.0的数组未按预期传递。我目前有一个usersInOrg数组,需要将其传递到应用程序的另一部分。直到我开始尝试使用从嵌套函数内部添加的对象对数组进行变异之前,自动数据绑定系统的工作方式就像是一种魅力。

属性:

    usersInOrg: {
      type: Array,
      notify: true
    },


功能:

  _computeUsersInOrg: function(){
    /************* userIdsObjectInOrg ***********
    {
      uid: true
      uid2: true
      uid3: true
      ...
    }
    ********************************************/
    var userIds = Object.keys(this.userIdsObjectInOrg);
    // Empty old users (just in case)
    this.usersInOrg = [];
    // So I can use this.notifyPath or this.usersInOrg in the firebase call
    var self = this;
    for (var key in userIds) {
      // Where the user is found in the database
      var userRef = this.baseRef + '/users/' + userIds[key];
      // Create query
      var firebaseRef = new Firebase(userRef);
      // Here is where I should be adding my people into the array
      firebaseRef.on("value", function(snapshot) {
        // This comes back fine { name: Jill, age: 23, ... }
        console.log(snapshot)

        // For debugging purposes (number are appearing correctly)
        self.notifyPath('usersInOrg', [5,6]);
        // Add in the user info to the array
        self.push('usersInOrg', snapshot.val());
        // Let index know I added it
        self.notifyPath('usersInOrg', self.usersInOrg);
      })
    }
  }


输出:

Users in Org: 5,6
Hello from shokka-admin-homepage


为什么对象没有追加到我的数组?我认为它应该输出5,6,[Object object]

最佳答案

当我输入这个问题时,我找到了答案。如果我深入研究列表的外观,则可以更好地看到自己的列表。这是循环遍历并尝试显示一些数据时的清单。我没有更改问题中的任何代码。

新输出:

User: 5
First Name:
User: 6
First Name:
User: [object Object]
First Name: Jill

Users in Org: 5,6
Hello from shokka-admin-homepage


故事的寓意:数组不像对象对自身进行字符串化那样对对象进行对字符串化。当对象在数组中时,它只是跳过它并继续前进。控制台日志是您的朋友。

控制台日志输出:

[5, 6, Object, splices: Object]

10-07 14:20