您好,我正在使用以下代码加载文件名为“ Attachments.xml”的XML文件:
var attachmentsXml = XmlBuddy.load(file, 'Attachments.xml');
现在,如果要加载文件名为“ attachments.xml”的xml文件,则无法加载,因此任何人都可以建议我该怎么做。
答案 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);
});