在Angular js中访问数组中的各种元素

时间:2014-01-06 11:30:09

标签: javascript angularjs taffydb

我正在使用Angular js和Taffy DB构建应用程序。

的javascript:

$scope.viewTable=function () {
  $scope.resultlists=[];
  $scope.resultSet=teamlist().get();
  var teamdata=$scope.resultSet;
  angular.forEach(teamdata,function(teamdata,i){
    if (i<length) {
    console.log(teamdata[i].text);
    }
  });
};

我有像Taffy DB这样的数组结果。 teamdata包含

[Object { text="zxcxzc", $$hashKey="00A", ___id="T000002R000002", more...}, Object { text="czxcz", $$hashKey="00C", ___id="T000002R000003", more...}, "zxczxc", Object { undefined={...}, ___id="T000002R000005", ___s=true}, 5454575, Object { undefined={...}, ___id="T000002R000007", ___s=true}, 2, 2727287.5]

我必须在表格中显示每个元素。

如何访问上述数组中的每个元素?

请建议

1 个答案:

答案 0 :(得分:2)

angular.forEach for arrays的签名如下:

angular.forEach(array, function(element) { ... })

所以你应该能够像这样访问每一行:

angular.forEach(teamdata, function(row) {

  // ... row.text
});

angular.forEach documentation