我试图在表中插入元素,但在显示数据对象时,出现未定义的消息
如何将这个日期对象传递给表?
其他对象没问题,我只是数据对象有问题
JSON:
[
{
tipo: "O",
numero: "001",
data: { year: 2019, month: 4, day: 18 },
prazo: 0,
documento: "4600530888",
},
];
$.ajax({
url: 'buscaTextoAditivos.action', // action to be perform
type: 'POST', //type of posting the data
data: { linhaSelecionadaJson: jsonHide }, // data to set to Action Class
dataType: 'json',
success: function (data) {
var indices = ['Tipo', 'Numero', 'Data', 'Prazo', 'Document']
var table = $("<table>")
var thead = $('<thead>')
for (const index of indices) {
$('<th>' + index + '</th>').appendTo(thead)
}
var tbody = $('<tbody>')
for (const item of data) {
var tr = $('<tr>')
for (const index of indices) {
$('<td>' + item[index] + '</td>').appendTo(tr)
}
tr.appendTo(tbody)
}
tbody.appendTo(table)
$("#loaderMaiorDemandante").hide();
table.appendTo('#records_table')
一只甜甜圈
相关分类