angular中ng-repeat是啥意思
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angular中ng-repeat是啥意思相关的知识,希望对你有一定的参考价值。
参考技术A ng-repeat 指令用于循环输出指定次数的 HTML 元素。集合必须是数组或对象。
看不懂的话 把这段代码 拷贝到你的html里自己在浏览器上运行看
实例:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script>
</head>
<body ng-app="myApp">
<table ng-controller="myCtrl" border="1">
<tr ng-repeat="x in records">
<td>x.Name</td>
</tr>
</table>
<script>
var app = angular.module("myApp", []);
app.controller("myCtrl", function($scope)
$scope.records = [
"Name" : "Alfreds Futterkiste"
,
"Name" : "Berglunds snabbk"
,
"Name" : "Centro comercial Moctezuma"
,
"Name" : "Ernst Handel"
]
);
</script>
</body>
</html>
以上是关于angular中ng-repeat是啥意思的主要内容,如果未能解决你的问题,请参考以下文章
[Violation] 向 Angular 4 项目中的滚动阻止“touchstart”事件添加非被动事件侦听器是啥意思?
如何在 angular.js 中解析 ng-repeat 中的 HTML [重复]
angular.js > 如何在视图中获取内部 JSON 数据(使用 ng-repeat 指令)