发布于 5年前

js 根据对象中的某个属性值来进行排序

/**
 * 根据对象中的某个属性值来进行排序
 * @param {*} property  属性值
 * @param {*} type      排序方式 down:降序;默认升序
 */
function compareSort(property, type) {
  return function (a, b) {
    let value1 = a[property];
    let value2 = b[property];
    let result = type === 'down' ? value2 - value1 : value1 - value2;

    return result;
  };
}
©2020 edoou.com   京ICP备16001874号-3