0
我正在製作一個帶有公交時間表的小型web應用程序項目。我試圖使用dropdowns從json中填充數據表。我不知道我是否正確執行了json部分,但是我一直在解析數據,以便表格顯示所選總線和停止的正確時間。從json使用下拉列表中填充表格
它必須這樣做:選擇巴士號碼,選擇巴士站,然後在表格下方顯示正確的時間。
HTML選擇部分:
Bus No.: <select ng-model="selectedNr" ng-options="x for (x,y) in busData"></select>
Stop name: <select ng-model="selectedStop" ng-options="x for (x,z) in selectedNr.stops"></select>
那麼表:
<table class="time-table">
<tr ng-repeat="time in busData[selectedNr].stops[selectedStops].time">
<th>{{time.hour}}</th>
<td ng-repeat="minute in time.minutes">{{minute}}</td>
</tr>
角部位:
app.controller("ngCtrl", function ($scope) {
"use strict";
$scope.busData = {
"bus1":{
"id":1,
"stops":{
"stop1":{
"id":1,
"stopName":"stop1",
"time":[
{
"hour": 1,
"minutes": [11, 21,31,41,51]
},
{
"hour": 2,
"minutes": [12, 22,32,42,52]
}
]
},
"stop2":{
"id":2,
"stopName":"stop2",
"time":[
{
"hour": 3,
"minutes": [11, 21,31,41,51]
},
{
"hour": 4,
"minutes": [12, 22,32,42,52]
}
]
}
}
}, (and so on...)
嵌入式Plunker
謝謝,現在它顯示出來了,就像它被暴露了!另外,你知道如何顯示每個停止選擇的「stopName」字符串嗎? – Mantom