Jquery 对象数组Array根据字段排序

Jquery在遍历数组array时,如果需要对其进行排序,会提供一个方法:sort()

但是这个只是针对string int这样的原始类型的。如何对一个对象数组进行排序那?

知识点:

假设以对象数组形式来保存学生信息。每个学生包括3个属性:sid,sname,sage。请基于sid为该数组排序。

说明:

sort()方法:需要添加比较函数,反复从数组中获取一对值,在比较的基础上返回<0、=0和>0的值。

其实和排序字符串、数值没什么区别,比较对象是按照对象中的某个属性比较,所以,我们只要取出对象中的某个属性比较即可



  
    jQuery数组和字符串--对象数组排序
    
    
  
  
    
未排序对象数组:
按照SID排序对象数组:
按照SAGE排序对象数组:

 

array.sort(function(a, b){
    // a and b will here be two objects from the array
    // thus a[1] and b[1] will equal the names
    // if they are equal, return 0 (no sorting)
    if (a[1] == b[1]) { return 0; }
    if (a[1] > b[1])
    {
        // if a should come after b, return 1
        return 1;
    }
    else
    {
        // if b should come after a, return -1
        return -1;
    }});

如果你返回的是C#对象,可以直接根据这个object的对象进行排序了。

比如 要根据对象的ID排序(顺序或者倒序);

datalist = datalist.sort(//顺序
           function (a, b) {
                   return (a.Id - b.Id);
                           } );

datalist = datalist.sort(//倒序
           function (a, b) {
                     return (b.Id - a.Id);
                            } );

 

你可能感兴趣的:(javaEE)