2016-06-28 7 views
1

私のコードは次のとおりです。私は上記のアンダースコアJSを使用していたlodashのアンダースコアjs _.uniqueと_.pluckに相当するのはどれですか?

var product_list = _.unique(_.pluck(data, 'Product')) 
var facility_list = _.unique(_.pluck(data, 'Facility')) 

。今私はLodash jsと同じ機能が必要です。どちらを使うべきですか?助けてください。

+1

可能な重複_.unique代わり_.pluckと_.uniq: //stackoverflow.com/questions/34765963/what-is-the-difference- between-lodashs-map-and-pluck) – DAXaholic

答えて

1

使用し_.map代わりに[lodashの違いは何です\ _ _マップや\摘み取る。。?](HTTPの

var product_list = _.uniq(_.map(data, 'Product')) 
var facility_list = _.uniq(_.map(data, 'Facility')) 
関連する問題