标签: javascript underscore.js
在下划线或纯javascript中,是否有
_.each(data.data, function(user){ _.each(user.apilog, function(event){ //the stuff }) })
答案 0 :(得分:1)
这样的事情(未经测试)。
这取决于pluck和chaining
_(data.data) .pluck('apilog') .each(function(event) { //the stuff });
我有点怀疑它会更有效率 - 但看起来好一点!