Lodash 学习笔记

1. loadsh是什么

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

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

2. 为什么要用lodash

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

3. 如何用?

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

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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值