ng-repeat循环遍历的用法

Posted yaomengli

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ng-repeat循环遍历的用法相关的知识,希望对你有一定的参考价值。

ng-repeat循环遍历的用法

    <script src="../angular-1.5.5/angular.min.js"></script>
</head>
<body ng-app="" ng-init="useName=[{id:1,name:‘狗‘},{id:1,name:‘猫‘}]">
<p ng-repeat="list in useName">//现遍历相当于for in循环
{{list}} //相当于打印 (此时打印出来的是一个对象)
欢迎:<span ng-bind="list.name"></span>
</p>




</body>

 

以上是关于ng-repeat循环遍历的用法的主要内容,如果未能解决你的问题,请参考以下文章

ionic1项目中 ion-slide轮播用ng-repeat遍历数据后自动循环功能失效

如何使用 ng-repeat 循环标记的内部内容但不重复父级

ng-repeat为啥不能遍历重复的东西

ng-repeat 中的 select2 不起作用。看片段

ng-repeat用法

python中for循环的用法