本文主要和大家介绍了nodejs实现解析xml字符串为对象的方法,涉及nodejs针对xml格式字符串的解析与转换相关操作技巧,需要的朋友可以参考下,希望能帮助到大家。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | var xmlreader = require ( "xmlreader" );
var fs = require ( "fs" );
var xml_string = '<response id= "1" shop= "aldi" >'
+ 'This is some other content'
+ '<who name= "james" >James May</who>'
+ '<who name= "sam" >'
+ 'Sam Decrock'
+ '<location>Belgium</location>'
+ '</who>'
+ '<who name= "jack" >Jack Johnsen</who>'
+ '<games age= "6" >'
+ '<game>Some great game</game>'
+ '<game>Some other great game</game>'
+ '</games>'
+ '<note>These are some notes</note>'
+ '</response>';
xmlreader.read(xml_string, function (errors, response){
if (null !== errors ){
console.log(errors)
return ;
}
console.log( response.response );
console.log( response.response.text() );
});
|
Salin selepas log masuk
没啥新奇的,看看输出吧
第一句输出结果为:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | {
attributes : [Function],
parent : [Function],
count : [Function],
at : [Function],
each : [Function],
text : [Function],
who : {
array : [[Object], [Object], [Object]],
count : [Function],
at : [Function],
each : [Function]
},
games : {
attributes : [Function],
parent : [Function],
count : [Function],
at : [Function],
each : [Function],
game : {
array : [Object],
count : [Function],
at : [Function],
each : [Function]
}
},
note : {
attributes : [Function],
parent : [Function],
count : [Function],
at : [Function],
each : [Function],
text : [Function]
}
}
|
Salin selepas log masuk
第二句输出:
1 | This is some other content
|
Salin selepas log masuk
根据输出我们就可以猜这东西是怎么回事儿了。
1、xmlreader
将xml转换为JSON对象(这样表述不准确,但是大家知道怎么一回事儿)。
2、转换成的JSON对象的嵌套结构与原xml标签嵌套结构相同。
3、视xml中同一级别出现某标签次数不同(一次和多次)生出不同的对应对象,如上的node为一次,who为三次。
4、提供了一下函数供操作属性或者遍历等等。
各方法含义:
1、attributes:获取所有属性。
2、parent:获取父节点。
3、count:获取数目。
4、at:获取下标为指定值的节点。
5、each:遍历,参数为一个函数。
6、text:获取节点内的文本,仅当前节点的文本,不包含子节点的文本。
相关推荐:
php解析xml并生成sql语句的实现方法
PHP解析xml格式数据工具类实例分享
解析XML的四种方法
Atas ialah kandungan terperinci nodejs解析xml字符串为对象的实例. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!