在AJAX中获取JSON数据的方法有以下几种:
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数据
}
};
xhr.send();
$.ajax({
url: 'data.json',
type: 'GET',
dataType: 'json',
success: function(data) {
// 处理获取到的JSON数据
}
});
fetch('data.json')
.then(function(response) {
return response.json();
})
.then(function(data) {
// 处理获取到的JSON数据
});
这些方法都可以用来获取JSON数据,具体使用哪种方法取决于个人偏好和项目需求。