欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

get json字符串

傅智翔2年前8瀏覽0評論

在Web開發中,我們通常需要從后臺獲取數據,JSON是一種常見的數據格式。那么如何獲取JSON字符串呢?下面我們來介紹幾種獲取JSON字符串的方法。

1.使用AJAX請求

$.ajax({
url:'yourURL',
type: 'GET',
dataType: 'json',
success:function(data){
console.log(data);
}
});

2.使用fetch

fetch('yourURL')
.then(response =>response.json())
.then(data =>console.log(data))

3.使用XMLHttpRequest

let xhr = new XMLHttpRequest();
xhr.open('GET', 'yourURL', false);
xhr.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
let data = JSON.parse(this.responseText);
console.log(data);
}
};
xhr.send();

無論使用哪種方法,獲取JSON字符串后,我們可以對其進行相應的操作,比如解析、展示等。