var currentVideos = this.get('items').pluck('video');
// TODO: Why does pluck not work here?
var currentVideosDurations = _.map(currentVideos, function (currentVideo) {
return currentVideo.get('duration');
});
var test = _.pluck(currentVideos, 'duration');
console.log("Test:", test);
我想知道为什么我的第二次采摘不起作用,但我的地图工作正常?我认为这些是等效的用法。
这是显示 this.get('items') 和 currentVideos 数组的控制台日志的屏幕截图。