gpt4 book ai didi

javascript - 使用 AJAX 从 JSON 文件中检索数据

转载 作者:可可西里 更新时间:2023-11-01 13:30:35 26 4
gpt4 key购买 nike

所以我尝试从我的 JSON 文件中读取数据并使用 HTML 将其显示在网页上。它适用于这个特定数据库的简单 key ,但对我来说不起作用。

JSON:

var carInfo = [
{
carId: 1,
carPrice : 15.00,
},
{
carId: 2,
carPrice : 25.00,
}
];

JS:

$(document).ready(function() {

$.getJSON("vehicle_data.json", function(data) {

$.each(data.carInfo, function() {

$("ul").append("<li>Car ID: "+this[carInfo[0].carId]);

});
});
});

HTML:

<html>
<body>
<ul></ul>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="json_data_retrieve.js"></script>
</body>
</html>

最佳答案

这不是有效的 JSON 文件。它是一个 JS 脚本。

var carInfo = [
{
carId: 1,
carPrice : 15.00,
},
{
carId: 2,
carPrice : 25.00,
}
];

试试这个:

{
"carInfo":
[
{
"carId": 1,
"carPrice": 15
},
{
"carId": 2,
"carPrice": 25
}
]
}

更新:
您可以将此脚本加载为 HTML 中的脚本源。它必须是一个 .js 文件。

<script src="vehicle_data.js"></script>

如果需要动态加载,使用jQuery $.getScript 方法。它具有 .json 扩展名并不重要,因为它将作为脚本进行评估。

$(document).ready(function() 
{
$.getScript("vehicle_data.json", function()
{
// Pay attention. In this case, you work with carInfo
// variable because it has been executed as a script,
// but not loaded as a JSON file.
$.each(carInfo, function() {
$("ul").append("<li>Car ID: " + this[carInfo[0].carId]);
});
});
});

但是,非常奇怪的是,有人给你带有 JS 声明的 .json 文件并告诉你应该执行它但不应该重命名它或作为脚本加载。

关于javascript - 使用 AJAX 从 JSON 文件中检索数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30610920/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com