我是 Json 的新手,并试图加载 Json 对象的一部分。结构是:
{
"Monday": {
"title": "Magic Monday",
"text": "On Magic Monday, all the food disappears.",
"image": "images/special.jpg",
"color": "red"
},
"Tuesday": {
"title": "Twofer Tuesday",
"text": "Two vegetables for the price of one!.",
"image": "images/special.jpg",
"color": "green"
}
}
我有一个变量 weekDay,我将使用它来查找正确的对象。找到后,我想在我的 HTML 中使用 title 和 text 的值。
到目前为止,我有代码:
$.getJSON('data/specials.json', function (data) {
$.each(data, function (entryIndex, entry) {
var html = '<h4>' + entry['title'] + '</h4>';
html += '<p>' + entry['text'] + '</p>';
$('#details').append(html);
});
});
但我不知道,如何仅从具有正确工作日的对象中获取标题和文本。
提前致谢 :)