是否有一个简写来循环使用下划线的对象内的所有对象?

时间:2014-12-02 21:16:24

标签: javascript underscore.js

在下划线或纯javascript中,是否有

的简写
_.each(data.data, function(user){
  _.each(user.apilog, function(event){
  //the stuff
  })
})

1 个答案:

答案 0 :(得分:1)

这样的事情(未经测试)。

这取决于pluckchaining

_(data.data)
    .pluck('apilog')
    .each(function(event) {
      //the stuff
    });

我有点怀疑它会更有效率 - 但看起来好一点!