ng-repeat用法

Posted

tags:

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

参考技术A 公共部分

后记 主要 是 ng-repeat 运用 和 一些 过滤器使用. loadAjax是 让 加载一次。 有个loadmore 滚动加载。 ued.href 主要是 点击跳转,并把参数 在地址上拼接。

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用法的主要内容,如果未能解决你的问题,请参考以下文章

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

从子 ng-repeat 访问父 ng-repeat 的索引

如何执行不复制 ng-repeat 元素的 ng-repeat

ng-repeat angularJS 中的 ng-repeat

ng-repeat动态创建嵌套ng-repeats的数组

ng-repeat 内的 ng-repeat 和每个项目的 td - AngularJS