使用jQuery/JavaScript 解析JSON 資料
使用AJAX 擷取JSON 資料時,需要確保Content-Type 標頭已正確設定為application /json。如果不是這種情況,您必須手動將資料類型指定為「json」。
要迭代JSON 資料並顯示div 中的每個名稱,您可以使用$.each() 函數:
$.ajax({ type: "GET", url: "http://example/functions.php", data: { get_param: "value" }, dataType: "json", success: function (data) { $.each(data, function (index, element) { $("body").append($("<div>", { text: element.name })); }); }, });
或者,您可以使用$.getJSON 方法:
$.getJSON("/functions.php", { get_param: "value" }, function (data) { $.each(data, function (index, element) { $("body").append($("<div>", { text: element.name })); }); });
以上是如何使用 jQuery 的 AJAX 或 $.getJSON 解析和顯示 JSON 資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!