使用underscore.js迭代对象

时间:2011-12-07 19:25:06

标签: javascript jquery backbone.js underscore.js

所以,我正在学习backbone.js,并且正在使用下面的示例在视图中迭代某些模型。第一个代码段工作,而另一个基于underscore.js的代码不起作用。为什么呢?

// 1: Working
this.collection.each(function(model){ console.log(model.get("description")); });

// 2: Not working       
_.each(this.collection, function(model){ console.log(model.get("description")); });

我做错了什么,因为我自己看不到它?

2 个答案:

答案 0 :(得分:23)

this.collection是一个实例,而this.collection.each是一个迭代正确对象的方法,它是集合实例的.models属性。

有了这个说你可以尝试:

_.each(this.collection.models, function(model){ console.log(model.get("description")); });

这完全没有意义,因为this.collection.each是一个类似于:

的函数
function(){
return _.each.apply( _, [this.models].concat( [].slice.call( arguments ) ) );
}

所以你不妨使用this.collection.each; P

答案 1 :(得分:2)

另外,你可以试试......

_.each(this.collection.models, function(model){
    console.log(model.get("description"));
});