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);
2 番目のプルが機能しないのはなぜかと思っていましたが、マップは正常に機能しますか? これらは同等の使用法だと思いました。
これは、this.get('items') と currentVideos の配列を示すコンソール ログのスクリーンショットです。