我有一個lodash變量;Lodash地圖並返回唯一
var usernames = _.map(data, 'usernames');
它產生以下;
[
"joebloggs",
"joebloggs",
"simongarfunkel",
"chrispine",
"billgates",
"billgates"
]
我怎麼能調整lodash語句,以便它只返回唯一值的數組?例如
var username = _.map(data, 'usernames').uniq();
你試過'uniqBy'嗎? '_.uniqBy(數據,'用戶名')' –
我希望數據可以讓我這樣做......但在這種情況下,我不能。 – MindVox