按类排序对象,然后使用d3

时间:2015-08-28 03:03:06

标签: javascript sorting d3.js

我有一个对象数组,我想按标题排序,然后是另一个属性是否有值。我试图d3.sort,但我不认为我正确地做到了。我试过了:

filtered.sort(function(a, b) {
        d3.ascending(a.claimed, b.claimed) ||
            d3.ascending(a.title, b.title);

以及a variation of this answer以更好地满足我的需求,但它们似乎都没有正确排序。有什么我想念的吗?

以下是我正在使用的对象中的数据示例:

author: "String"
claimed: "String" //This should be sorted first
mapClass: "String"
name: "String"
tags: "String"
thumbnail: "URL"
timestamp: "Date"
title: "String" //Then this should be second
url: "URL"

1 个答案:

答案 0 :(得分:3)

你只是错过了一个回复声明!这似乎对我有用。

filtered.sort(function(a, b) {
  return d3.ascending(a.claimed, b.claimed) ||
      d3.ascending(a.title, b.title);
});