美文网首页
使用fetch获取XML数据

使用fetch获取XML数据

作者: 起个名称好难 | 来源:发表于2020-08-31 17:39 被阅读0次

    以前使用XMLHttpRequest来获取的时候,通过读取XHR对象的responseXML可得到XML数据。使用fetch则可以通过以下方式来完成。

    fetch("https://www.cnet.com/rss/news/")    .then(response=>response.text())    .then(str=>(newwindow.DOMParser()).parseFromString(str,"text/xml"))    .then(data=>console.log(data))

    效果如图

    相关文章

      网友评论

          本文标题:使用fetch获取XML数据

          本文链接:https://www.haomeiwen.com/subject/orhpsktx.html