【发布时间】:2018-09-04 15:05:16
【问题描述】:
我想知道是否可以从 JSON 数据创建动态 HTML 表。列和标题的数量应根据 JSON 中的键而变化。例如这个 JSON 应该创建这个表:
{
color: "green", code: "#JSH810"
}
,
{
color: "red", code: "#HF59LD"
}
...
这个 JSON 应该创建这个表:
{
id: "1", type: "bus", make: "VW", color: "white"
}
,
{
id: "2", type: "taxi", make: "BMW", color: "blue"
}
...
这必须是 100% 动态的,因为我想显示数百个不同的 JSON 对象,所以 HTML 页面中不应该硬编码。
【问题讨论】: