色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

get json字符串

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

在Web開發(fā)中,我們通常需要從后臺獲取數(shù)據(jù),JSON是一種常見的數(shù)據(jù)格式。那么如何獲取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字符串后,我們可以對其進(jìn)行相應(yīng)的操作,比如解析、展示等。