= array(); } $post['classname'] = 'post'; } function comment_format(&$post) { global $conf, $uid, $gid, $forumlist; if (empty($post)) return; $forum = $post['fid'] ? forum_read($post['fid']) : ''; $thread = well_thread_read_cache($post['tid']); if ($thread) { //$post['fid'] = $thread['fid']; $post['closed'] = $thread['closed']; $post['subject'] = $thread['subject']; $post['url'] = $thread['url']; } else { $post['closed'] = 0; $post['subject'] = lang('thread_not_exists'); $post['url'] = ''; } $post['create_date_fmt'] = humandate($post['create_date']); //$post['message'] = stripslashes(htmlspecialchars_decode($post['message'])); $user = user_read_cache($post['uid']); $post['username'] = array_value($user, 'username'); $post['user_avatar_url'] = array_value($user, 'avatar_url'); $post['user'] = $user ? user_safe_info($user) : user_guest(); isset($post['floor']) || $post['floor'] = 0; // 权限判断 $post['allowupdate'] = 2 == array_value($forum, 'comment', 0) && ($uid == $post['uid'] || forum_access_mod($post['fid'], $gid, 'allowupdate')); $post['allowdelete'] = group_access($gid, 'allowuserdelete') && $uid == $post['uid'] || forum_access_mod($post['fid'], $gid, 'allowdelete'); $post['user_url'] = url('user-' . $post['uid'] . ($post['uid'] ? '' : '-' . $post['pid'])); if ($post['files'] > 0) { list($attachlist, $imagelist, $filelist) = well_attach_find_by_pid($post['pid']); // 使用图床 评论使用图床,mysql会过多,写死链接到内容是减轻mysql的过多的方法 if (2 == $conf['attach_on']) { foreach ($imagelist as $key => $attach) { $url = $conf['upload_url'] . 'website_attach/' . $attach['filename']; // 替换成图床 $post['message'] = FALSE !== strpos($post['message'], $url) && $attach['image_url'] ? str_replace($url, $attach['image_url'], $post['message']) : $post['message']; } } $post['filelist'] = $filelist; } else { $post['filelist'] = array(); } $post['classname'] = 'post'; } function comment_format_message(&$val) { global $conf; if (empty($val)) return; // 使用云储存 if (1 == $conf['attach_on'] && 1 == $val['attach_on']) { $val['message'] = str_replace('="upload/', '="' . file_path($val['attach_on']), $val['message']); } elseif (2 == $conf['attach_on'] && 2 == $val['attach_on']) { // 使用图床 list($attachlist, $imagelist, $filelist) = well_attach_find_by_tid($val['tid']); foreach ($imagelist as $key => $attach) { $url = $conf['upload_url'] . 'website_attach/' . $attach['filename']; // 替换成图床 $val['message'] = FALSE !== strpos($val['message'], $url) && $attach['image_url'] ? str_replace($url, $attach['image_url'], $val['message']) : $val['message']; } } else { $val['message'] = str_replace('="upload/', '="' . file_path($val['attach_on']), $val['message']); } //$val['message'] = stripslashes(htmlspecialchars_decode($val['message'])); } // 把内容中使用了云储存的附件链接替换掉 function comment_message_replace_url($pid, $message) { global $conf; if (0 == $conf['attach_on']) { $message = FALSE !== strpos($message, '="../upload/') ? str_replace('="../upload/', '="upload/', $message) : $message; $message = FALSE !== strpos($message, '="/upload/') ? str_replace('="/upload/', '="upload/', $message) : $message; } elseif (1 == $conf['attach_on']) { // 使用云储存 $message = str_replace('="' . $conf['cloud_url'] . 'upload/', '="upload/', $message); } elseif (2 == $conf['attach_on']) { // 使用图床 评论使用图床,mysql会过多,写死链接到内容是减轻mysql的过多的方法 list($attachlist, $imagelist, $filelist) = well_attach_find_by_pid($pid); foreach ($imagelist as $key => $attach) { $url = $conf['upload_url'] . 'website_attach/' . $attach['filename']; // 替换回相对链接 $message = $attach['image_url'] && FALSE !== strpos($message, $attach['image_url']) ? str_replace($attach['image_url'], $url, $message) : $message; } } return $message; } function comment_filter($val) { unset($val['userip']); return $val; } function comment_highlight_keyword($str, $k) { $r = str_ireplace($k, '' . $k . '', $str); return $r; } // //
function comment_message_format(&$s) { if (xn_strlen($s) < 100) return; $s = preg_replace('#.*?
#is', '', $s); $s = str_ireplace(array('
', '
', '
', '

', '', '', '', '' . ''), "\r\n", $s); $s = str_ireplace(array(' '), " ", $s); $s = strip_tags($s); $s = preg_replace('#[\r\n]+#', "\n", $s); $s = xn_substr(trim($s), 0, 100); $s = str_replace("\n", '
', $s); } // 对内容进行引用 function comment_quote($quotepid) { $quotepost = comment_read($quotepid); if (empty($quotepost)) return ''; $uid = $quotepost['uid']; $s = $quotepost['message']; $s = comment_brief($s, 100); $userhref = url('user-' . $uid); $user = user_read_cache($uid); $r = '
' . $user['username'] . ' ' . $s . '
'; return $r; } // 获取内容的简介 0: html, 1: txt; 2: markdown; 3: ubb function comment_brief($s, $len = 100) { $s = strip_tags($s); $s = htmlspecialchars($s); $more = xn_strlen($s) > $len ? ' ... ' : ''; $s = xn_substr($s, 0, $len) . $more; return $s; } ?>Sorting array after firstName and lastName, javascript - Stack Overflow
最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Sorting array after firstName and lastName, javascript - Stack Overflow

programmeradmin38浏览0评论

Currently I am sorting an array on firstName.

currentUsers = currentUsers.sort(function(a, b) {
    if (a.firstName > b.firstName) {
        return 1;
    } else if (a.firstName < b.firstName) {
        return -1;
    }
};

But I would like to have the lastName sorted as well. So that Bob Anderson would be sorted above Bob Bobson. I looked at another question here on stackoverflow which suggested that I should add:

currentUsers = currentUsers.sort(function(a, b) {
    if (a.firstName > b.firstName) {
        return 1;
    } else if (a.firstName < b.firstName) {
        return -1;
    }

    if (a.lastName > b.lastName) {
        return 1;
    } else if (a.lastName < b.lastName) {
        return -1;
    } else {
        return 0;
    }
};

//Edit The problem I have is that the sorting keeps sorting on every letter in firstName. How would I only sort on the first letter of firstName and then move on to the lastName?

Currently I am sorting an array on firstName.

currentUsers = currentUsers.sort(function(a, b) {
    if (a.firstName > b.firstName) {
        return 1;
    } else if (a.firstName < b.firstName) {
        return -1;
    }
};

But I would like to have the lastName sorted as well. So that Bob Anderson would be sorted above Bob Bobson. I looked at another question here on stackoverflow which suggested that I should add:

currentUsers = currentUsers.sort(function(a, b) {
    if (a.firstName > b.firstName) {
        return 1;
    } else if (a.firstName < b.firstName) {
        return -1;
    }

    if (a.lastName > b.lastName) {
        return 1;
    } else if (a.lastName < b.lastName) {
        return -1;
    } else {
        return 0;
    }
};

//Edit The problem I have is that the sorting keeps sorting on every letter in firstName. How would I only sort on the first letter of firstName and then move on to the lastName?

Share Improve this question edited Mar 24, 2021 at 7:19 Reality-Torrent asked Oct 9, 2015 at 6:36 Reality-TorrentReality-Torrent 3583 silver badges15 bronze badges 4
  • 1 Your first condition always fires return 1 or return -1 if firstName isnt equal. – Joakim M Commented Oct 9, 2015 at 6:38
  • 1 jsfiddle/arunpjohny/awao21ug/1 ? – Arun P Johny Commented Oct 9, 2015 at 6:40
  • I don't see what the problem is... – Hayley Guillou Commented Oct 9, 2015 at 6:41
  • 1 Just concatenate them if ( a.firstName+a.lastName > b.firstName+b.lastName ) – Shanimal Commented Oct 9, 2015 at 6:42
Add a ment  | 

5 Answers 5

Reset to default 7

You can try this ES6 version

const currentUsers = [{
  firstName: "Bob",
  lastName: "Adler"
}, {
  firstName: "Barney",
  lastName: "Jones"
}, {
  firstName: "Freddie",
  lastName: "Crougar"
}, {
  firstName: "Bob",
  lastName: "Adams"
}, {
  firstName: "Joe",
  lastName: "Lewis"
}, {
  firstName: "Joseph",
  lastName: "Lewis"
}];

const sortedUsers = currentUsers.sort((a, b) => {
          const result = a.firstName.localeCompare(b.firstName);

          return result !== 0 ? result : a.lastName.localeCompare(b.lastName);
        })

console.log(sortedUsers);

Just concatenate them with an underscore

var currentUsers = [{
  firstName: "Bob",
  lastName: "Adams"
}, {
  firstName: "Barney",
  lastName: "Jones"
}, {
  firstName: "Freddie",
  lastName: "Crougar"
}, {
  firstName: "Bobby",
  lastName: "Anderson"
}, {
  firstName: "Joe",
  lastName: "Lewis"
}, {
  firstName: "Joseph",
  lastName: "Lewis"
}];

currentUsers = currentUsers.sort(sortOnFirstAndLast)

function sortOnFirstAndLast(a,b) {
  var aa = a.firstName + ", " + a.lastName,
    bb = b.firstName + ", " + b.lastName;
  if (aa > bb)
    return 1;
  else if (aa < bb)
    return -1;
  return 0;
}

var $r = $("#result");
for (var i in currentUsers) {
  var div = $("<div/>").html(i + ":" + currentUsers[i].firstName + ":" + currentUsers[i].lastName);
  $r.append(div)
}
<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="result"></div>

Try this;

var currentUsers = [ {
  firstName: "Bob",
  lastName: "Bobson"
},{
  firstName: "Bob",
  lastName: "Anderson"
}, {
  firstName: "Amy",
  lastName: "Jackson"
}];

var sorted = currentUsers.sort(function(a, b) {
  var aFirstChar = a.firstName.charAt(0);
  var bFirstChar = b.firstName.charAt(0);
  if (aFirstChar > bFirstChar) {
    return 1;
  } else if (aFirstChar < bFirstChar) {
    return -1;
  } else {
    var aLastChar = a.lastName.charAt(0);
    var bLastChar = b.lastName.charAt(0);
    if (aLastChar > bLastChar) {
      return 1;
    } else if (aLastChar < bLastChar) {
      return -1;
    } else {
      return 0;
    }    
  }
});

alert(JSON.stringify(sorted));

Just for the sake of alternatives. If you're only paring the first char, you could use charCodeAt instead of charAt to get a numeric value for another way of paring:

currentUsers  = currentUsers.sort(function(a, b) {
    return a.firstName.charCodeAt(0) - b.firstName.charCodeAt(0) 
        || a.lastName.charCodeAt(0) - b.lastName.charCodeAt(0);
});

The || executes only if the firstname first chars are equal (diff = 0)

The best, shortest and most readable code I could figure out was

currentUsers = currentUsers.sort((a, b) =>
    a.firstName.localeCompare(b.firstName) ||
    a.lastName.localeCompare(b.lastName)
);

'||' allows the other parison only execute when first localeCompare returns 0, aka. both names being equal value.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论