使用AJAX返回JSON數據格式的步驟如下:
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if (xhr.readyState === 4 && xhr.status === 200) {
// 處理服務器響應
var response = JSON.parse(xhr.responseText);
// ...
}
};
xhr.open('GET', 'http://example.com/api/data', true);
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.send();
在服務器端,將數據以JSON格式返回給客戶端。
注意:以上代碼是使用原生JavaScript實現的AJAX請求,如果使用jQuery等類庫,可以更簡化地實現。