前言: lodash(一)中只是研究了array中的多种方法,接下来就是经常用到的循环遍历问题 过程: 1._.forEach(collection, [iteratee=_.identity], [thisArg]) 遍历 _.forEach([22,33,11,55],function (val... ...
分类:
编程语言 时间:
2017-04-20 22:51:51
阅读次数:
1747
前言: lodash是一个具有一致接口、模块化、高性能等特性的JavaScript工具库(官网地址:http://lodashjs.com/docs/#_differencearray-values)。 过程: 接触js也已经有一年多的时间了,那天无意间从大神同事那里听到这个性能更好的工具,终于抽出... ...
分类:
其他好文 时间:
2017-04-20 17:08:16
阅读次数:
226
1) Loop for N times 2) Loop through a collection and return a deeply-nested property from each item 3) Create an array of N size and populate them wit ...
分类:
其他好文 时间:
2017-03-17 17:44:08
阅读次数:
261
由Underscore与Lodash的差异引发的思考:http://ju.outofmemory.cn/entry/106512 JavaScript工具库之Lodash Underscore和Lodash商讨合并事宜:http://www.infoq.com/cn/news/2015/06/und ...
分类:
其他好文 时间:
2017-03-01 18:07:21
阅读次数:
184
import _ from 'lodash'; import cfg from '../cfg/cfg'; import {Response} from '../shared/lib/response'; import {RecDB} from '../lib/mongo.js'; import {... ...
分类:
其他好文 时间:
2017-01-16 21:24:23
阅读次数:
212
lodash常用函数一 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>lodash常用函数</title> </head> <body> <script src="//cdn.bootcss.com/lod ...
分类:
其他好文 时间:
2016-12-23 16:44:55
阅读次数:
291
1.find 2.findIndex _.findIndex(array, [predicate=_.identity], [thisArg])该方法类似 _.find,区别是该方法返回的是符合 predicate条件的第一个元素的索引,而不是返回元素本身. 参数 predicate 提供的是一个属 ...
分类:
其他好文 时间:
2016-12-17 22:24:27
阅读次数:
631
1.map 2.remove 移除数组 array 中满足 predicate 条件的所有元素 ,返回的是被移除元素数组. 3.uniq 唯一 ...
分类:
其他好文 时间:
2016-12-17 22:14:38
阅读次数:
160
1.flatten 对深层嵌套数组的抹平 -11479287884122 1479287884172 501479287884174 1479287884199 25 20000001479287884199 1479287884224 25 2000000 ...
分类:
其他好文 时间:
2016-11-16 19:58:37
阅读次数:
191
数组篇 1.compact,就是将数组中的false值去掉 function baseSlice(array, start, end) { var index = -1, length = array.length; start = start == null ? 0 : (+start || 0) ...
分类:
其他好文 时间:
2016-11-16 14:15:16
阅读次数:
194