数据表页脚总和()

时间:2016-06-07 13:49:30

标签: javascript jquery datatables

我试图对hh:mm:ss类型的数据进行正确的求和(),并且我试图理解为什么当分钟或秒数得到时它会出现这种行为> = 100. 我该如何解决?

正确的: enter image description here不正确的: enter image description here

这是我从Datatables论坛获得的sum()函数:

jQuery.fn.dataTable.Api.register('sum()', function () {
    return this.flatten().reduce(function (a, b) {
      if (typeof a === 'string') {
          a = a.replace(/[^\d.-]/g, '') * 1;
      }
      if (typeof b === 'string') {
          b = b.replace(/[^\d.-]/g, '') * 1;
      }
      return a + b;
  }, 0);
});  

这是剩下的代码,充满了转换,让我头晕目眩。

        var tempoPage = tempo.column(3, { page: 'current' })
            .data()
            .sum();
        tempoPage = tempoPage.toString();

        while (tempoPage.length < 6) {
            tempoPage = "0" + tempoPage
        }
        tempoPage = tempoPage.replace(/^(\d+)(\d{2})(\d{2})$/, function (m, m1, m2, m3) {
            m1 = Number(m1);
            m2 = Number(m2);
            m2 += parseInt(m3 / 60, 10);
            m3 = m3 % 60; // get soconds
            m1 += parseInt(m2 / 60, 10); //get hours
            m2 = m2 % 60; // get minutes

            //convert back to string
            m2 = m2.toString();
            m3 = m3.toString();
            m1 = m1.toString();       

            while (m1.length < 2){
                m1 = '0' + m1
            }
            while (m2.length < 2){
                m2 = '0' + m2
            }
            while (m3.length < 2){
                m3 = '0' + m3
            }                

            return m1 + ':' + m2.slice(-2) + ':' + m3.slice(-2);
        })
        //write in footer
        $(tempo.column(3)
            .footer()).html(tempoPage);
    },

有没有人看到更好的方法来做到这一点或者能指出我在正确的轨道上? 谢谢。

1 个答案:

答案 0 :(得分:2)

我不能说代码有什么问题。它看起来真的很复杂,我们唯一需要做的就是总计3个值,并在秒数增加60时添加例如1分钟。使这个不太复杂的sumHours()插件,它似乎做了这个工作(但是有未经深入测试):

jQuery.fn.dataTable.Api.register( 'sumHours()', function ( ) {
  function pad(int) {
    return int > 9 ? int.toString() : '0' + int.toString()
  }
  var t, hours = 0, mins = 0, secs = 0;
  for (var i=0; i<this.length; i++) {
    t = this[i].split(':')
    hours += parseInt(t[0])
    mins += parseInt(t[1])
    if (mins >= 60) {
       mins -= 60
       hours += 1
    }
    secs += parseInt(t[2])
    if (secs >= 60) {
       secs -= 60
       mins += 1
    }
  }  
  return pad(hours) + ':' + pad(mins) + ':' + pad(secs)
})

您可以使用与您链接到的官方sum()示例相同的方式:

api.column( 0, {page:'current'} ).data().sumHours()

演示 - &gt;的 http://jsfiddle.net/vbuyjm9s/