如何在Angular中编写循环?

15 浏览
0 Comments

如何在Angular中编写循环?

m=5;
for(var i=0;i

如何在Angular中输出i

它不起作用

$scope.B = [];
        angular.forEach([0, 1, 2, 3], function (value, index) {
            $scope.B.push(value);
        });

0
0 Comments

问题的原因可能是在AngularJS应用程序中的其他地方存在问题。需要检查控制台并提供更多信息。

在循环中,将元素添加到数组$scope.B,并使用json过滤器在视图中显示。

代码如下:

angular
  .module('App', [])
  .controller('DefaultController', ['$scope', function ($scope) {
    $scope.B = [];
    angular.forEach([0, 1, 2, 3], function (value, index) {
        $scope.B.push(value);
    });
  }]);

<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.10/angular.min.js"></script>
<div ng-app="App">
  <div class="container" ng-controller="DefaultController">
    {{ B | json }}
  </div>
</div>

0