gpt4 book ai didi

Javascript ES6 从 URL 获取 JSON(无 jQuery)

转载 作者:搜寻专家 更新时间:2023-11-01 04:45:50 26 4
gpt4 key购买 nike

我想知道是否有任何 ES6 方法可以从 url 获取 json 或其他数据。

jQuery GET 和 Ajax 调用很常见,但我不想在这个中使用 jQuery。

典型的调用如下所示:

var root = 'http://jsonplaceholder.typicode.com';

$.ajax({
url: root + '/posts/1',
method: 'GET'
}).then(function(data) {
console.log(data);
});

或者没有 jQuery 是这样的:

function loadXMLDoc() {
var xmlhttp = new XMLHttpRequest();

xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == XMLHttpRequest.DONE ) {
if (xmlhttp.status == 200) {
document.getElementById("myDiv").innerHTML = xmlhttp.responseText;
}
else if (xmlhttp.status == 400) {
alert('There was an error 400');
}
else {
alert('something else other than 200 was returned');
}
}
};

xmlhttp.open("GET", "ajax_info.txt", true);
xmlhttp.send();
}

我的问题是......是否有任何新的方法来做到这一点......例如 ES6 或者它仍然是相同的方式吗?

最佳答案

获取 API

例子:

// url (required), options (optional)
fetch('https://davidwalsh.name/some/url', {
method: 'get'
}).then(function(response) {

}).catch(function(err) {
// Error :(
});

更多信息:

https://developer.mozilla.org/en/docs/Web/API/Fetch_API

关于Javascript ES6 从 URL 获取 JSON(无 jQuery),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44435063/

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