// Use customizeData
exportOptions: {
//--
},
customizeData: function (data) {
// This code is to find the column name's index which you want to cast.
var ind = data.header.indexOf("ColumnName");
for (var i = 0; i < data.body.length; i++) {
// will cast the number to string.
data.body[i][ind] = '\u200C' + data.body[i][ind];
}
}
2条答案
按热度按时间iezvtpos1#
在Excel中包含15位以上数字的数字,它会将第15位之后的任何数字更改为零。您可以在导出时将列值转换为字符串。
错误图像(_M):
qlzsbp2j2#
如果需要在Excel中查找数据,则必须将数字数据转换为文本格式。因此,Excel不会尝试将其转换为数字。要执行此操作,请将数字放入CSV文件,如下所示