我有三個數組作爲json返回,我想在新列中顯示每個數組。我怎樣才能做到這一點?如何爲每個數組中的每個數組添加新列jQuery
這裏是$.post
功能
$.post("/booking/times", {
id: $("#user_id").val(),
selectedDay: formattedDate
},
function(data) {
console.log(data);
$('#dayTimes').empty();
$(".loading-icon").hide();
if (data.times.length == 0) {
console.log("no available times");
} else {
$.each(data.times, function(index, value) {
console.log(value);
});
}
});
這裏是JSON輸出我從console.log
得到each
內:
{
"times":[
[
"10:30 - 11:00",
"11:00 - 11:30",
"11:30 - 12:00",
"12:00 - 12:30",
"12:30 - 13:00",
"13:00 - 13:30",
"13:30 - 14:00"
],
[
"14:00 - 14:30",
"14:30 - 15:00",
"15:00 - 15:30",
"15:30 - 16:00",
"16:00 - 16:30",
"16:30 - 17:00"
],
[
"17:00 - 17:30",
"17:30 - 18:00",
"18:00 - 18:30",
"18:30 - 19:00",
"19:00 - 19:30",
"19:30 - 20:00"
]
]
}
根據你的例子json數據,你想顯示在3列? – juntapao
@juntapao是的先生。 – raqulka