gpt4 book ai didi

javascript - $.getjson 无法将数组对象附加到 html

转载 作者:行者123 更新时间:2023-12-03 10:17:43 25 4
gpt4 key购买 nike

嗨,我的 json 数据如下所示

[{
"menu": "File",
}, {
"menu": "File1",
}]

我已经编写了 jquery 代码来将响应附加到 html,如下所示

$(document).ready(function () {
$.getJSON('data.json', function (data) {

var template = $('#personTpl').html();
var html = Mustache.to_html(template, data);
$('#sampleArea').html(html);
});

});

mustache 模板如下:

<script id="personTpl" type="text/template">
<h1>{{menu}}</h1>
</script>

请帮忙

最佳答案

这应该是您的 JSON:

[
{
"menu": "File"
},
{
"menu": "File1"
}
]

关于javascript - $.getjson 无法将数组对象附加到 html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29789103/

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