计算我的 table 的总行数并在控制台 angularjs 中打印

Count total number of rows of my table and print in console angularjs

我正在创建一个网络应用程序,其中有一个 table 和一个复选框,如果我选中该复选框,我想显示我的 table、

赞:

<table>
 <thead>
  <tr>
    <td>
      <input type="checkbox" ng-model="checkall" ng-click="clickcheckall()"/>
    </td>
    <td>other td</td>
  </tr>
 </thead>
 <tbody>
  <tr ng-repeat="somedata in table">
    <td></td>
    <td></td>
  </tr>
 </tbody>
</table>

这里我想打印这个

{{showcheckalldata}}

在我的控制器中我有一个范围变量

$scope.showcheckalldata='';

如果我想打印列数,我需要做什么?

你可以只分配数组中元素的个数,

$scope.showcheckalldata= table.length;

演示

var app = angular.module('plunker', []);

app.controller('MainCtrl', function($scope, $http) {

   
  $scope.results = [{
    "agence": "CTM",
    "secteur": "Safi",
    "statutImp": "operationnel"
  },
  {
    "agence": "SMS",
    "secteur": "Safi",
    "statutImp": "operationnel"
  }];

  $scope.clickcheckall = function() {
    $scope.showcheckalldata = $scope.results.length;
  }
});
<!DOCTYPE html>
<html ng-app="plunker">

<head>
  <meta charset="utf-8" />
  <title>AngularJS Plunker</title>
  <script>
    document.write('<base href="' + document.location + '" />');
  </script>
  <link rel="stylesheet" href="style.css" />
  <script src="https://code.angularjs.org/1.4.7/angular.js"></script>
  <script src="app.js"></script>
</head>

<body ng-controller="MainCtrl">


  <table>
     <tr>
    <td>
      <input type="checkbox" ng-model="checkall" ng-click="clickcheckall()"/>
    </td>
    
  </tr>
    <tr>
      <th>Agence</th>
      <th>Secteur</th>
      <th>StatutImp</th>
    </tr>
    <tr ng-repeat="result in results">
      <td>{{result.agence}}</td>
      <td>{{result.secteur}}</td>
      <td>{{result.statutImp}}</td>
    </tr>
  </table>
  <h1>Total rows are : {{showcheckalldata}}</h1>
</body>

</html>