gpt4 book ai didi

javascript - Jquery 不从 JSON 文件读取

转载 作者:行者123 更新时间:2023-12-02 15:54:24 25 4
gpt4 key购买 nike

好的,这是我的 HTML 代码:

<div id="contentholder">
<div class="personcard">
<img src="http://placehold.it/400x400" />
<h2>Matej Vydra <span>Striker</span></h2>
<p>This is a paragraph about Watford Striker Matej Vydra, it doesnt really make much sense, but its great for testing and lolz.</p>
</div>
</div>

这是 JS 和 JSON 文件:

$(document).ready(function () {
$.getJSON('json/currentsquad.json', function (currentsquad) {
var output = "<div class='personcard'>";
for (var i in currentsquad.players) {
output += "<img src='" + currentsquad.players[i].image + "'/> <h2>" + currentsquad.players[i].name + "<span>" + currentsquad.players[i].position + "</span> </h2>";
}
output += "</div>";
document.getElementById("contentholder").innerHTML = output;
});
});

json:

{
"players": [
{
"image": "http://placehold.it/400x400",
"name": "Matej Vydra",
"position": "Striker"
},
{
"image": "http://placehold.it/400x400",
"name": "Troy Deeney",
"position": "Striker"
},
]
}

问题是代码没有显示给用户,我之前尝试过搜索,因此尝试在本地主机上运行它,但问题保持不变,并且 JSON 没有显示给用户。提前致谢。

最佳答案

您的 JSON 无效。虽然 JavaScript 对象文字表示法允许使用尾随逗号,但 JSON 标准不允许。因此,如果这是您发送的 JSON 的准确表示,您需要删除 players 数组中最后一个对象后面的逗号。

{
"players": [
{
"image": "http://placehold.it/400x400",
"name": "Matej Vydra",
"position": "Striker"
},
{
"image": "http://placehold.it/400x400",
"name": "Troy Deeney",
"position": "Striker"
}
]
}

关于javascript - Jquery 不从 JSON 文件读取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31664651/

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