JSON(JavaScript對象表示法)是一種用于在Web應(yīng)用程序之間傳遞數(shù)據(jù)的輕量級格式。它由鍵-值對構(gòu)成,類似于JavaScript對象。
以下是在JavaScript中調(diào)用JSON格式數(shù)據(jù)的簡單示例:
var request = new XMLHttpRequest(); request.open('GET', 'https://example.com/data.json', true); request.onload = function() { if (request.status >= 200 && request.status < 400) { // JSON.parse將JSON格式的字符串轉(zhuǎn)換為JavaScript對象 var data = JSON.parse(request.responseText); console.log(data); } else { console.log("獲取數(shù)據(jù)失敗"); } }; request.onerror = function() { console.log("請求出錯"); }; request.send();
在此示例中,我們使用XMLHttpRequest對象從https://example.com/data.json獲取JSON格式數(shù)據(jù)。然后,我們使用JSON.parse將JSON格式的字符串轉(zhuǎn)換為JavaScript對象,并將其存儲在名為data的變量中。最后,我們使用console.log輸出data對象。
使用JSON可以方便地在不同的Web應(yīng)用程序之間傳遞數(shù)據(jù),并且可以輕松地在JavaScript中使用。