从jqgrid表导出到csv时的编码问题

时间:2018-01-09 08:47:58

标签: csv jqgrid

需要一些帮助。我使用该函数从jqgrid表导出csv格式的数据:

    $("#table").jqGrid("exportToCsv", {
    mimetype: "text/csv;charset=utf-8",
    separator: ";",
    separatorReplace: "", // in order to interpret numbers
    quote: '"',
    escquote: '"',
    newLine: "\r\n", // navigator.userAgent.match(/Windows/) ?  '\r\n' : '\n';
    replaceNewLine: " ",
    includeCaption: true,
    includeLabels: false,
    includeGroupHeader: false,
    includeFooter: true,
    fileName: "phonebook.csv",
    returnAsString: false
})

工作正常。但后来我用Excell打开文件我看到这样的错误编码: enter image description here

如果我在Notepad ++中打开文件,它看起来不错。

任何人都可以提供帮助或提供一些建议吗?

0 个答案:

没有答案