Javascript CSV导出逗号问题

时间:2018-12-03 15:17:10

标签: javascript

我有一个JavaScript函数,正在将一些JSON数据转换为Excel导出。在大多数情况下,一切都很好。

但是,我注意到我的一个列名中现在有一个逗号(故意)LastName, FirstName

使用我现有的代码,当我希望它成为单个列标题时,它会导致标题列被分离并移到其自己的列中。

/**
 * Convert the JSON to a CSV File
 * @param {*} JSONData 
 * @param {*} ReportTitle 
 * @param {*} ShowLabel 
 */
function JSONToCSVConvertor(JSONData, ReportTitle, ShowLabel) {

    //If JSONData is not an object then JSON.parse will parse the JSON string in an Object
    var arrData = typeof JSONData != 'object' ? JSON.parse(JSONData) : JSONData;
    var CSV = '';
    //This condition will generate the Label/Header
    if (ShowLabel) {
        var row = "";

        //This loop will extract the label from 1st index of on array
        for (var index in arrData[0]) {
            //Now convert each value to string and comma-seprated
            row += index + ',';
        }
        row = row.slice(0, -1);
        //append Label row with line break
        CSV += row + '\r\n';
    }

    //1st loop is to extract each row
    for (var i = 0; i < arrData.length; i++) {
        var row = "";
        //2nd loop will extract each column and convert it in string comma-seprated
        for (var index in arrData[i]) {
            row += '"' + arrData[i][index] + '",';
        }
        row.slice(0, row.length - 1);
        //add a line break after each row
        CSV += row + '\r\n';
    }

    if (CSV == '') {
        alert("Invalid data");
        return;
    }

    var csv = CSV;
    blob = new Blob([csv], {
        type: 'text/csv'
    });


    if (window.navigator && window.navigator.msSaveOrOpenBlob) {
        window.navigator.msSaveOrOpenBlob(blob, ReportTitle);
    } else {
        var objectUrl = URL.createObjectURL(blob);
        window.open(objectUrl);
    }


}

我相信我的错误出在if (ShowLabel) {语句中。

有没有一种方法可以忽略标题行中的逗号,以便我的列保持对齐?

错误:

enter image description here

所需:

enter image description here

关于如何忽略标题行中的逗号的任何想法?

1 个答案:

答案 0 :(得分:4)

我相信您应该在标签周围添加引号,这样内部的逗号(引号)不会被视为分隔符

for (var index in arrData[0]) {
    //Now convert each value to string and comma-seprated
    row += '\"' + index + '\",';
}

在屏幕快照中,尽管有逗号,但Bob, Jones已正确分配给一个单元格。例如,如果您在记事本中打开CSV文件,则应该看到Bob,Jones带有引号。