{
"status": done
"msg": "Got all leaves",
"data": [
{
"_id": "63b26e351bc7d25e5b7a1ebb",
"reason": "fever",
"date": 1672511400000,
"type": "tab1",
"__v": 0
},
{
"_id": 63b26fb91bc7d25e5b7a1ee8
"reason": "sick",
"date": 1672511400000,
"type": "tab1",
"__v": 0
},
{
"_id": "63b26dcc1bc7d25e5b7a1eb",
"reason": "familyfunction",
"date": 1672511400000,
"type": "tab2",
"__v": 0
},
{
"_id": "63b26fcb1bc7d25e5b7a1ef3",
"reason": "urgent leave",
"date": 1672511400000,
"type": "tab1",
"__v": 0
}
]
}
这是JSON数据。
我有两个标签称为tab1和tab2。我需要显示每个特定标签的数据,和纪元值也变成了日期时间戳。例如:如果我按了tab键1:
就像我按下制表符2一样。
1条答案
按热度按时间ggazkfy81#
要实现您的输出,您可以使用
Table
小部件。有关参考,请参阅此链接。
对于JSON数据,您可以将JSON数据转换为Model类,并列出该Model类。
要将JSON数据转换为模型类,请参阅this link。