Lodash 学习笔记

1. loadsh是什么

lodash 是 js工具库 ,它在常规ES5的基础数据结构上,封装了很多更加实用的方法和模块。

它的关注点偏向:数组、数据类型、和一些常用功能的封装。

2. 为什么要用lodash

方便,不需要再自己去封装一个常用的功能了。

3. 如何用?

lodash 文档中提供了已封装好的方法和模块,下载了安装包,熟悉下都有那些方法,安装下就可以直接用了。

Lodash 学习笔记_第1张图片

3.1 安装

$ npm i --save lodash

 3.2 使用(举例:findIndex方法)

_.findIndex(array, [predicate=_.identity], [fromIndex=0])


var users = [
  { 'user': 'barney',  'active': false },
  { 'user': 'fred',    'active': false },
  { 'user': 'pebbles', 'active': true }
];
 
_.findIndex(users, function(o) { return o.user == 'barney'; });
// => 0
 
// The `_.matches` iteratee shorthand.
_.findIndex(users, { 'user': 'fred', 'active': false });
// => 1
 
// The `_.matchesProperty` iteratee shorthand.
_.findIndex(users, ['active', false]);
// => 0
 
// The `_.property` iteratee shorthand.
_.findIndex(users, 'active');
// => 2

你可能感兴趣的:(摸鱼划水学习ing,学习,前端,javascript,ecmascript)