1

ListView をオブジェクト プロパティをループさせるにはどうすればよいですかtimetableRecords。私はぐるぐる回っていますが、それを行う方法が見つかりません。

データの例 (swagger 応答モデル スキーマ):

{
  "from": {
    "name": "string"
  },
  "to": {
    "name": "string"
  },
  "price": 0,
  "date": "2016-07-25T11:52:52.674Z",
  "timetableRecords": [
    {
      "departure": "2016-07-25T11:52:52.675Z",
      "arrival": "2016-07-25T11:52:52.675Z"
    }
  ],
  "fetchedOn": "2016-07-25T11:52:52.675Z"
}

HTML:

<div id="timetableRecords"></div>

<script type="text/x-kendo-template" id="template">
    <div class="timetable-record">
        <p>#:departure#</p>
        <p>#:arrival#</p>
    </div>
</script>

JavaScript:

$('#timetableRecords').kendoListView({
    template: kendo.template($("#template").html()),
    dataSource: {
        transport: {
            read: {
                type: 'GET',
                url: 'api/timetable?from=station_name1&to=station_name2',
                dataType: 'json'
            }
        }
    }
});
4

1 に答える 1