使用reduce为数组对象去重
摘要:
let arrUnique = function(arr){ let ojb = {}; arr = arr.reduce(function(prevArr, currentItem) { //利用对象的键名无法重复的特点,mch_id是唯一区别的属性值 ojb[currentItem.mch_id 阅读全文
posted @ 2023-03-02 14:41 SE7EN_96 阅读(13) 评论(0) 推荐(0) 编辑