최신 웹 개발 튜토리얼
 

XML DOM 파서 오류


XML 파서 오류

XML 문서를 열려고 할 때, 파서 오류가 발생할 수 있습니다.

파서 오류가 발생하면, 에러 정보를 포함하는 XML 문서를로드 할 수있다.

아래 코드 예제에서는 잘 형성되지 않는 XML 문서를로드하려고합니다.

당신은 잘 구성된 XML에 대한 자세한 읽을 수있는 XML 구문 .

<html>
<body>

<p id="demo"></p>

<script>
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
  if (xhttp.readyState == 4 && xhttp.status == 200) {
    myFunction(xhttp);
  }
};
xhttp.open("GET", "note_error.xml", true);
xhttp.send();

function myFunction(xml) {
  var parser, xmlDoc;
  parser = new DOMParser();
  xmlDoc = parser.parseFromString(xml.responseText,"text/xml");
  document.getElementById("demo").innerHTML =
  myLoop(xmlDoc.documentElement);
}

function myLoop(x) {
  var i, y, xLen, txt;
  txt = "";
  x = x.childNodes;
  xLen = x.length;
  for (i = 0; i < xLen ;i++) {
    y = x[i];
    if (y.nodeType != 3) {
      if (y.childNodes[0] != undefined) {
        txt += myLoop(y);
      }
    } else {
    txt += y.nodeValue + "<br>";
    }
  }
  return txt;
}
</script>

</body>
</html>
»그것을 자신을 시도

XML 파일을 봐 : note_error.xml을