有人可以指导我如何读取/写入'NodeJS'中xml2js.Parser()解析的XML节点值吗?到目前为止,我的代码是流程
/* Theme specific */
//= require_tree "./theme/#{ENV[APP_THEME]}"
/* Shared between all themes */
(function() { ... })();
这里的挑战是标签名称在数据级别是相同的。怎么读它请帮忙。
答案 0 :(得分:-1)
cd你的项目文件夹然后
npm install xml2json --save
然后在你的代码中
var parser = require('xml2json');
var util = require('util'); //for testing
var xmlString = "<body><row><col>firstrow1</col><col>firstrow2</col><col>firstrow3</col></row><row><col>secondrow1</col><col>secondrow2</col><col>secondrow3</col></row></body>";
var object = parser.toJson( xmlString, {object: true});
//printing the result
console.log(util.inspect(object));
您可以看到此模块的文档here