Coder Social home page Coder Social logo

Comments (4)

awwright avatar awwright commented on July 29, 2024

Wouldn't a second xmlns:p2 (on the p2:fourth element) be redundant, here?

from xmldom.

Phrogz avatar Phrogz commented on July 29, 2024

Wouldn't a second xmlns:p2 (on the p2:fourth element) be redundant, here?

No, because that namespace declaration applies only to the second element and any descendants.
https://www.w3.org/TR/xml-names/#scoping

from xmldom.

awwright avatar awwright commented on July 29, 2024

Oh for some reason I was reading that completely backwards; yeah, the specified XMLDOM output isn't correct.

from xmldom.

microshine avatar microshine commented on July 29, 2024

I found that commented code

https://github.com/jindw/xmldom/blob/master/dom.js#L1042-L1043

If uncomment that code it works fine

Example 1

const doc = new DOMImplementation().createDocument(null, "root");

doc.documentElement.appendChild(doc.createElement("child"));

const signature1 = doc.createElementNS("https://signature.com", "Signature");
doc.documentElement.appendChild(signature1);
const signature2 = doc.createElementNS("https://signature.com", "Signature");
doc.documentElement.appendChild(signature2);

const xml = new XMLSerializer().serializeToString(doc);
console.log(xml);

// Output
// <root>
//   <child/>
//   <Signature xmlns="https://signature.com"/>
//   <Signature xmlns="https://signature.com"/>
// </root>

Example 2

const doc = new DOMImplementation().createDocument(null, "root");

const p1First = doc.createElementNS("http//first.namespace.com", "p1:first");
const p2Second = doc.createElementNS("http//second.namespace.com", "p2:second");
const p1Third = doc.createElementNS("http//first.namespace.com", "p1:third");
const p2Fourth = doc.createElementNS("http//second.namespace.com", "p2:fourth");

doc.documentElement.appendChild(p1First);
p1First.appendChild(p2Second)
p1First.appendChild(p1Third)
p1Third.appendChild(p2Fourth)

const xml = new XMLSerializer().serializeToString(doc);
console.log(xml);

// Output
// <root>
//   <p1:first xmlns:p1="http//first.namespace.com">
//     <p2:second xmlns:p2="http//second.namespace.com"/>
//     <p1:third>
//       <p2:fourth xmlns:p2="http//second.namespace.com"/>
//     </p1:third>
//   </p1:first>
// </root>

from xmldom.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.