码迷,mamicode.com
首页 > 其他好文 > 详细

Angular.forEach用法

时间:2015-11-25 13:07:15      阅读:562      评论:0      收藏:0      [点我收藏+]

标签:

1.针对对象循环(key,value)

官方示例:

var values = {name: ‘misko‘, gender: ‘male‘};
var log = [];
angular.forEach(values, function(value, key) {
  this.push(key + ‘: ‘ + value);
}, log);
expect(log).toEqual([‘name: misko‘, ‘gender: male‘]);

2.针对对象数组(key,value)

非官方示例:

var objs =[{a:1},{a:2}];
angular.forEach(objs, function(data,index,array){
//data等价于array[index]
console.log(data.a+‘=‘+array[index].a);
});

3.针对对象数组(data)

非官方示例:

var objs =[{a:1},{a:2}];
angular.forEach(objs, function(data){
console.log(data.a);
});

 

参数:

ParamTypeDetails
obj ObjectArray

Object to iterate over.

iterator Function

Iterator function.

context
(optional)
Object

Object to become context (this) for the iterator function.

 

 

 

Angular.forEach用法

标签:

原文地址:http://www.cnblogs.com/golddream/p/4994133.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!