使用JavaScript加载XML文件名时不区分大小写

时间:2018-10-31 13:05:25

标签: javascript

您好,我正在使用以下代码加载文件名为“ Attachments.xml”的XML文件:

var attachmentsXml = XmlBuddy.load(file, 'Attachments.xml');

现在,如果要加载文件名为“ attachments.xml”的xml文件,则无法加载,因此任何人都可以建议我该怎么做。

1 个答案:

答案 0 :(得分:0)

您很有可能正在使用node.js,因此可以使用xml2json

fs = require('fs');
var parser = require('xml2json');

fs.readFile( './Attachments.xml', function(err, data) {
    var json = parser.toJson(data);
    console.log("to json ->", json);
 });