Vue中使用Lodash的实现示例
短信预约 -IT技能 免费直播动态提醒
安装
cnpm i -S lodash
全局引入
import _ from 'lodash'
Vue.prototype._ = _
使用
在任何地方使用_或者this._即可调用lodash
对象数组排序
let users = [
{ user: 'a', age: 48 },
{ user: 'b', age: 34 },
{ user: 'a', age: 42 },
{ user: 'b', age: 55 }
];
let c = this._.orderBy(users, ['age'], ['desc']);
console.log('age降序排列:', c);
let d = _.orderBy(users, ['user', 'age'], ['desc', 'asc']);
console.log('user降序,age升序排序:', d);
场景1:
我们要可视化今天各个小时的数据,其中x轴为
['00', '01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15'],但是后端返回的json数据中缺失了某个时间段的数据,为了不让echart中时间段错位,我们需要补上这一条数据,其值设置为0
封装函数:
test(
arr1 = ['00', '01', '02', '03'],
arr2 = [
{ value: '12', name: '00' },
{ value: '45', name: '01' },
{ value: '65', name: '03' }
],
orderKey = 'name',
order = 'asc'
) {
let arr_result = arr2.map((d) => d.name);
let a = arr1.filter((item) => !arr_result.includes(item));
if (a.length !== 0) {
a.forEach((item) => {
arr2.push({ value: '0', name: item });
});
}
return _.orderBy(arr2, [orderKey], [order]);
},
到此这篇关于Vue中使用Lodash的实现示例的文章就介绍到这了,更多相关Vue使用Lodash 内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341