gpt4 book ai didi

javascript - 为什么我在尝试从 URL 读取 JSON 时收到 'undefined' 错误

转载 作者:行者123 更新时间:2023-12-03 07:05:04 26 4
gpt4 key购买 nike

如果你们能帮我解决这个问题,我将不胜感激。

我正在尝试从此 URL 读取 JSON:https://aixtra.klinikum.rwth-aachen.de/rest_index.php但我只收到“未定义”错误。我可以在 Google ARC 插件中读取此 JSON,并且可以使用我的代码从其他 URL 读取其他 JSON,因此我不明白问题出在哪里。

这是我的代码:

    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
$.getJSON("https://aixtra.klinikum.rwth-aachen.de/rest_index.php", function(response) {
$.each(response.data, function(index, d) {
$("#print_kurse").append("Datum: " + d.TERMIN + ", Kurs: " + d.kurs + ", von: " + d.von + ", bis: " + d.bis + "</br>");
});
}).error(function(jqXHR, textStatus, errorThrown) {
alert("Error: " + jqXHR.responseText);
});
});
</script>

<div id="print_kurse"></div>

有什么想法吗?非常感谢!

最佳答案

这与通过 HTTP/HTTPS 的 AJAX 请求有关。您正在通过 HTTP 从 HTTPS 源请求内容。这被您尝试访问的服务器阻止了。确保您通过 HTTPS 请求数据。

关于javascript - 为什么我在尝试从 URL 读取 JSON 时收到 'undefined' 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36860038/

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