无法在表-AngularJS中显示正确的数据

时间:2015-09-11 06:40:25

标签: javascript arrays angularjs ng-repeat

下面是我的plunker,我试图在每个类别下显示数据。但数据不打印。例如:-rom值12345应该直接来自面包。 我不确定我的代码在哪里出错:

  $scope.allProducts = [];
  angular.forEach($scope.data,function(item, index){
    angular.forEach(item.products, function(item2, index){
      if($scope.allProducts.indexOf(item2.consummable) == -1){
        $scope.allProducts.push(item2.consummable);
      }
    })
  })

Creating a table matrix

0 个答案:

没有答案