如何从此xml页面检索数据

时间:2017-03-16 09:38:10

标签: javascript ajax xml response

所以即时尝试从请求中显示所有数据但我无法得到响应它只是一直给我[对象XMLDocument]或如果我使用的话是空白.responseText

这是请求网址http://www.omdbapi.com/?t=Chef&plot=full&r=xml

这是网站http://www.omdbapi.com/

这是我正在使用的代码

<button onclick="loadXML()">Run</button>

<p id="output"></p>

<script>
function loadXML() {
  var xmlhttp = new XMLHttpRequest();
  xmlhttp.onreadystatechange = function() {
    if (this.readyState == 4 && this.status == 200) {
      document.getElementById("output").innerHTML = this.responseXML;
    }
  };
  xmlhttp.open("GET", "http://www.omdbapi.com/?t=Chef&plot=full&r=xml", true);
  xmlhttp.send();
}
</script>

我需要的只是一个回复,我可以从那里去,但我尝试的任何工作都没有:/

1 个答案:

答案 0 :(得分:0)

谢谢你看,但我想通了。我正在接收HTML标签,当我输出这些标签时,它们不会显示,因为它们作为HTML标签回显。数据刚刚隐藏。为了解决这个问题,我只是保存了文件,或者在输出

之前可以清理它