使用json2html https://github.com/eisenbraun/columns库时遇到问题。可以将这个js库与Json对象一起使用,如下所示。
var jsonobj = [{
"id": "31",
"Mesial": {
"disorder": "",
"other": ""
},
"Facial": {
"disorder": "DC-HP",
"other": ""
},
"Distal": {
"disorder": "",
"other": ""
},
"Lingual": {
"disorder": "",
"other": ""
},
"Occlusal": {
"disorder": "",
"other": ""
}
}, {
"id": "37",
"Mesial": {
"disorder": "",
"other": ""
},
"Facial": {
"disorder": "RE-AR",
"other": ""
},
"Distal": {
"disorder": "",
"other": ""
},
"Lingual": {
"disorder": "",
"other": ""
},
"Occlusal": {
"disorder": "",
"other": ""
}
}]
我使用了在线工具Convert JSON to HTML Table,但是很遗憾,它的库不可用。
预期的表输出为
答案 0 :(得分:2)
否,您的数据格式不正确。
您的格式需要遵循以下数据格式:
[{"col1":"row1", "col2":"row1", "col3":"row1"}, {"col1":"row2", "col2":"row2", "col3":"row2"}]
每个对象都具有colX:rowY
格式。
因此您不能将对象作为行条目。