Home > Web Front-end > JS Tutorial > body text

nodejs parses xml string into instance of object

小云云
Release: 2018-03-16 09:04:43
Original
2383 people have browsed it

This article mainly introduces the method of nodejs to parse xml strings into objects, and involves the operation skills related to the parsing and conversion of xml format strings by nodejs. Friends who need it can refer to it. I hope it can help everyone.


var xmlreader = require("xmlreader");
var fs = require("fs");
var xml_string = &#39;<response id="1" shop="aldi">&#39;
      +    &#39;This is some other content&#39;
      +    &#39;<who name="james">James May</who>&#39;
      +    &#39;<who name="sam">&#39;
      +      &#39;Sam Decrock&#39;
      +      &#39;<location>Belgium</location>&#39;
      +    &#39;</who>&#39;
      +    &#39;<who name="jack">Jack Johnsen</who>&#39;
      +    &#39;<games age="6">&#39;
      +      &#39;<game>Some great game</game>&#39;
      +      &#39;<game>Some other great game</game>&#39;
      +    &#39;</games>&#39;
      +    &#39;<note>These are some notes</note>&#39;
      +  &#39;</response>&#39;;
xmlreader.read(xml_string, function(errors, response){
  if(null !== errors ){
    console.log(errors)
    return;
  }
  console.log( response.response );
  console.log( response.response.text() );
});
Copy after login

Nothing new, let’s take a look at the output

The output result of the first sentence is:


##

{
  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]
  }
}
Copy after login

The second sentence output:


This is some other content
Copy after login
Based on the output, we can guess what this thing is about.

1.

xmlreaderConvert xml to JSON object (this expression is not accurate, but everyone knows what it is). 2. The nested structure of the converted JSON object is the same as the nested structure of the original xml tag.
3. Depending on the number of times a certain tag appears at the same level in xml (once and multiple times), different corresponding objects will be generated. The above node is once and who is three times.
4. Provide some functions for operating attributes or traversing, etc.

Method meaning:

1,

attributes: Get all attributes. 2,
parent: Get the parent node. 3,
count: Get the number. 4,
at: Get the node whose subscript is the specified value. 5,
each: Traversal, the parameter is a function. 6,
text: Get the text within the node, only the text of the current node, excluding the text of the child nodes.

Related recommendations:


How to implement php to parse xml and generate sql statements

PHP parsing xml format data tool class Example sharing

Four ways to parse XML

The above is the detailed content of nodejs parses xml string into instance of object. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template