标签:col desc const nbsp ram rtt esc 目标 class
利用sort,根据数组内对象某一属性进行排序
/** * @description: 根据数组内对象某一属性(number类型)进行排序 * @param {*} source 目标数组 * @param {*} sortField 排序属性 * @param {*} sortType ASC DESC 默认升序 * @return {*} */ const sortFn = (source, sortField, sortBy = ‘ASC‘) => { return source.sort((a, b) => sortBy === ‘ASC‘ ? a[sortField] - b[sortField] : b[sortField] - a[sortField]); }
标签:col desc const nbsp ram rtt esc 目标 class
原文地址:https://www.cnblogs.com/aaron-9c/p/13878677.html