我将模型发送到模板。该模型有一个集合。在模板中,我回显了一些变量和函数:
console.log(comments);
console.log(_.size(comments));
console.log(comments instanceof App.Collections.Comments);
console.log(_.pluck(comments, 'created'));
_.each(comments, function(com) {
console.log(com);
});
前三个有效,但后两个下划线函数无效。Pluck 给出 3x undefined 并且每个都不会迭代。
Object { length=3, models=[3], _byId={...}, more...}
3
true
[undefined, undefined, undefined]
如何使下划线功能起作用?