d3 js在chrome中排序错误

时间:2018-06-01 14:31:22

标签: javascript sorting d3.js

我试图在2张桌子上排序d3表格,除了chrome之外,每个浏览器都可以。它有什么问题以及如何解决它?

我的代码:

enter code her}).done( function (response) {
    response.sort(function(x, y){
        return d3.ascending(x.DQI_FROM_SPEC, y.DQI_FROM_SPEC);
    });
    response.sort(function(x, y){
        return d3.ascending(x.AREA, y.AREA);
    });e

0 个答案:

没有答案