Title
自定义过滤器
-
序号
姓名
性别
年龄
分数
-
{{$index+1}}
{{stu.name}}
{{stu.sex}}
{{stu.age}}
{{stu.score}}
for(var i=0 ; i < e.length ; i++){
这句报错TypeError: Cannot read property 'length' of undefined
根据《angular实战》的例子中做的,这个错该怎么整?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
ng-repeat指令的作用是遍历你的数组数据,也就是你的data。
这个指令的意思是,先使用young过滤器来过滤你的data,然后使用ng-repeat来遍历你过滤后的数据。