Lodash 中文文档(v4.15.0)lodash 是一个 JavaScript 的实用工具库, 表现一致性, 模块化, 高性能, 以及 可扩展.http://lodash.net/docs/4.15.0.html
npm i @types/lodash
找 tsconfig.json 文件,没有创建,有修改
"esModuleInterop": true,
import * as _ from 'lodash' //引入所有
import _ from "lodash"; //定义变量_ (_是官方推荐的,你可以自由定义),接受所有
import { assign } from "lodash"; // 按需引入,推荐使用这个
import { uniqBy } from "lodash";
messageList = uniqBy(messageList, "msg_id");// 数组、你的对象内的字段
import { cloneDeep} from "lodash";
const arr= cloneDeep(oldArr)
import { debounce } from "lodash";
const handleScroll = ()=>{
}
debounce(handleScroll, 200)
import { forEach } from "lodash";
// 循环对象
forEach({ 'a': 1, 'b': 2 }, function(value, key) {
console.log(key); // a b
});
// 循环数组
forEach(item.list, (listItem) => {
});
需要注意的是,他支持三个参数,前两个跟js中是一样的,第三个值是下标
import { includes} from "lodash";
includes([1, 2, 3], 1);// => true
includes([1, 2, 3], 1, 2);// => false 这里是说在数组的下标为2的值,是否==1
includes({ 'user': 'fred', 'age': 40 }, 'fred');// => true
includes('pebbles', 'eb');// => true
import { filter } from "lodash";
const arr = [
{ 'user': 'barney', 'age': 36, 'active': true },
{ 'user': 'fred', 'age': 40, 'active': false }
];
//跟js中的filter一样,支持函数
filter(arr, (o)=>!o.active );
// 通过对象过滤
filter(arr, { 'age': 36});// 结果是:{ 'user': 'barney', 'age': 36, 'active': true }
// 根据数组过滤 active===false
filter(arr, ['active', false]);//结果是:{ 'user': 'fred', 'age': 40, 'active': false }
// 根据字符串过滤
filter(arr, 'active');// =>结果是: { 'user': 'barney', 'age': 36, 'active': true }
和js提供的方法相比较,一个是可以对 对象进行查找,二是支持第三个参数,就是下标
import { find } from "lodash";
// 对象中查找
find(obj, (item) => item.value === 111)
// 数组中查找,跟js一样的
find(arr, (item) => item.value === 111)