gpt4 book ai didi

javascript - javascript从url获取xml

转载 作者:行者123 更新时间:2023-12-02 16:45:07 24 4
gpt4 key购买 nike

我正在编写一个 js 来从 url 获取 xml,但我没有得到任何响应。我做错了什么吗?

  $(document).ready(function () {
$.ajax({
type: "GET",
url: "http://www.w3schools.com/xml/simple.xml",
dataType: "xml",
success: function(response)
{
alert(response);
}
});


});

http://jsfiddle.net/4bh0qpb1/1/

最佳答案

您已修复第一个脚本语法错误 ("),但由于 CORS,您无法使用 ajax 访问以下网址 http://www.w3schools.com/xml/simple.xml (跨域资源共享)策略。

原因跨源请求被阻止:同源策略不允许读取 http://www.w3schools.com/xml/simple.xml 处的远程资源。可以通过将资源移动到同一域或启用 CORS 来解决此问题。

关于javascript - javascript从url获取xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27163857/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com