Typography

活版印字


  • Home
  • Archive
  • Categories
  • Tags
  •  

© 2020 alincode

Theme Typography by Makito

Proudly published with Hexo

lodash 常見功能(1)

Posted at 2016-07-04

uniqBy

1
2
3
4
5
6
7
8
9
10
let data = [{
GameId: 11,
}, {
GameId: 11,
}, {
GameId: 13,
}];
let originSize = data.length;
data = _.uniqBy(data, "GameId");
let newSize = data.length;

Share 

 Previous post: 把 Sequelize 預設的駝峰命名改成底線命名 Next post: Sequelize belongsToMany 

© 2020 alincode

Theme Typography by Makito

Proudly published with Hexo