如何將此對象數組映射到新對象的數組,其中對象的ID是鍵並且其值是對象?將下劃線的對象數組映射到ID爲key的新對象
var players = [{id: 2, score: 5}, {id: 3, score: 10}]
var mapped = _.map(players, function(x) { return {x.id: x}})
// desired output = [{2: {id: 2, score: 4}, {3: {id: 3, score: 10}} ]
我得到一個語法錯誤試圖在你的JS小提琴你不包括underscore上述Uncaught SyntaxError: Unexpected token .(…)
我想弄清楚一個更好的方法,我使用這種方法結束。 –