【发布时间】:2016-02-17 10:25:12
【问题描述】:
我需要解析下面的json并显示在一个html页面中。
- 在下拉列表中显示 COLA、COLB、COLC
- 在 html 表格中显示类型和索引的值。
JSON
{
"mydb1": {
"mappings": {
"TAB1": {
"properties": {
"COLA": {
"type": "string",
"index": "not_analyzed"
},
"COLB": {
"type": "string",
"index": "not_analyzed"
},
"COLC": {
"type": "string",
"index": "not_analyzed"
}
}
}
}
}
}
【问题讨论】:
-
你试过研究吗?