SlickGrid:大数字转换为指数形式

时间:2016-09-14 08:47:58

标签: javascript slickgrid

我正在使用SlickGrid,这是我面临的问题的示例jsfiddle

网格的最后一列(effortDriven)的值以科学计数法转换,因为它是a large number

我使用循环生成数据:

 for (var i = 0; i < 500000; i++) {
      data[i] = {
        title: "Task " + i,
        duration: "5 days",
        percentComplete: Math.round(Math.random() * 100),
        start: "01/01/2009",
        finish: "01/05/2009",
        effortDriven:  i *  23000000000000000000000 // this value is shown in scientific notation
      };
    }

如何避免将大号转换为scientific notation

提前致谢。

1 个答案:

答案 0 :(得分:1)

尝试(i * 23000000000000000000000).toLocaleString()