美文网首页
2. AngularJS中的指令 ng-repeat使用

2. AngularJS中的指令 ng-repeat使用

作者: 小草莓蹦蹦跳 | 来源:发表于2017-10-09 18:58 被阅读0次

    作用:遍历数组

    <body ng-app = 'app' ng-controller = 'wmxController'>
    <ul>
        <!--item可以随意命名,in是固定写法,不能改。array是控制器中定义的数组名称,要保持一致-->
        <li ng-repeat="item in array"> {{item}} </li>
    </ul>
    
    <hr>
    
    <ul>
        <li ng-repeat="student in stu"> {{student.name}}----{{student.age}} </li>
    </ul>
    
    <script src="angular.js"></script>
    
    <script>
        var app = angular.module('app',[]);
    
        app.controller('wmxController',['$scope',function ($scope) {
    //        定义一个全局的数组,名称为array,这个数组中分别有三个json对象
            $scope.array = ['2017年','你好','我喜欢你'];
            $scope.stu = [
                {name:'xiao',age:18},
                {name:'cao',age:20},
                {name:'mei',age:22}
                ];
        }])
    </script>
    </body>

    相关文章

      网友评论

          本文标题:2. AngularJS中的指令 ng-repeat使用

          本文链接:https://www.haomeiwen.com/subject/nnipyxtx.html