在AJAX中獲取JSON數(shù)據(jù)的方法有以下幾種:
var xhr = new XMLHttpRequest();
xhr.open('GET', 'data.json', true);
xhr.onreadystatechange = function() {
if (xhr.readyState === 4 && xhr.status === 200) {
var data = JSON.parse(xhr.responseText);
// 處理獲取到的JSON數(shù)據(jù)
}
};
xhr.send();
$.ajax({
url: 'data.json',
type: 'GET',
dataType: 'json',
success: function(data) {
// 處理獲取到的JSON數(shù)據(jù)
}
});
fetch('data.json')
.then(function(response) {
return response.json();
})
.then(function(data) {
// 處理獲取到的JSON數(shù)據(jù)
});
這些方法都可以用來獲取JSON數(shù)據(jù),具體使用哪種方法取決于個人偏好和項目需求。