gpt4 book ai didi

javascript - mustache 不呈现 JSON 数据

转载 作者:行者123 更新时间:2023-11-30 20:28:56 24 4
gpt4 key购买 nike

所以,我刚刚开始使用 Mustache JS。我有这个简单的 html 文件

<!DOCTYPE html>
<html lang="en">
<head>
<title>JavaScript Mustache template</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mustache.js/2.3.0/mustache.min.js"></script>
</head>

<body>
<script id="mp_template" type="text/template">
<p>Country: {{ name }}</p>
<p>Capital: {{ capital }}</p>
<p>Flag: <img src={{{ flag }}} ></p>
</script>
<div id="mypanel"></div>
<button id="btn">Load</button>
<script>
$(function () {
$("#btn").on('click', function () {
$.getJSON('https://restcountries.eu/rest/v2/name/aruba?fullText=true', function (data) {
var template = $("#mp_template").html();
var text = Mustache.render(template, data);
console.log(data);
$("#mypanel").html(text);
});
});
});
</script>

它通过 .getJSON 调用取回一些数据,然后尝试在单击按钮时呈现该数据。没有数据正在呈现。有人可以告诉我我做错了什么吗?

请查看此 URL 以查看返回数据的结构 https://restcountries.eu/rest/v2/name/aruba?fullText=true

最佳答案

该 API 返回一个 JSON 数组,而不是一个对象,这就是它不起作用的原因。

如果你只想要第一项,你可以这样做:

 var template = $("#mp_template").html();
var text = Mustache.render(template, data[0]);
console.log(data);
$("#mypanel").html(text);

或者您可以通过在对象属性中传递数组来遍历所有国家/地区:{ countries: data } 并在您的代码中使用 {{#countries}}模板

$(function () {
$("#btn").on('click', function () {
$.getJSON('https://restcountries.eu/rest/v2/name/aruba?fullText=true', function (data) {
var template = $("#mp_template").html();
var text = Mustache.render(template, { countries: data });
$("#mypanel").html(text);
});
});
});
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mustache.js/2.3.0/mustache.min.js"></script>
</head>

<body>
<script id="mp_template" type="text/template">
{{#countries}}
<p>Country: {{ name }}</p>
<p>Capital: {{ capital }}</p>
<p>Flag: <img src={{{ flag }}} style="width: 50px"></p>
{{/countries}}
</script>
<div id="mypanel"></div>
<button id="btn">Load</button>
</body>

关于javascript - mustache 不呈现 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50574832/

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