2

我是 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);
  });
});

但我不知道,如何仅从具有正确工作日的对象中获取标题和文本。

提前致谢 :)

4

1 回答 1

3

如果你有

var weekDay = "Tuesday";

那么你可以简单地使用

var entry = data[weekDay];

接着

var title = entry.title;

或者

var title = entry['title'];

本文档说明如何访问对象属性。

于 2012-12-20T14:52:06.973 回答