ユーザーが選択したフィールドに基づいて、json 値をフラットな csv に変換しようとしています。私のjsonは次のようになります
var data = {
"_index": "test",
"_type": "news",
"_source": {
"partnerName": "propertyFile 9",
"relatedSources": "null",
"entityCount": "50",
"Categories": {
"Types": {
"Events": [{
"count": 1,
"term": "Time",
"Time": [{
"term": "Dec 9",
"Dec_9": [{
"count": 1,
"term": "2012"
}]
}]
}, {
"count": 4,
"term": "News",
"News": [{
"term": "Germany",
"Germany": [{
"count": 1,
"term": "Election"
}],
"currency": "Euro (EUR)"
}, {
"term": "Egypt",
"Egypt": [{
"count": 1,
"term": "Revolution"
}]
}]
}]
}
}
}};
すべてのオカレンスの値を収集してcsvとして保存できましたが、ルート自体から詳細を保存したい..
Time を選択すると、csv 出力は次のようになります。
"test", "news", "propertyFile 9","null", "50", "Events": "Time", "Dec 9", "2012"
jsonを平坦化することは可能ですか..jsonフィドルリンクを追加して、このことでどこに到達したかを示します.. http://jsfiddle.net/JHCwM/