Having trouble displaying the content of the JSON below using Angular 4 and Typescript:
- Display timed_out and max_score in a text box
Display CV/JOB in a table.
Any suggestions?
{ "took": 56, "timed_out": false, "_shards": { "total": 18, "successful": 18, "failed": 0 }, "hits": { "total": 23381243, "max_score": 2.2639267, "hits": [ { "_index": "2018-09", "_type": "ABC", "_id": "122", "_score": 2.2639267, "fields": { "CV": [ "proc" ], "JOB": [ "pap" ] } }, { "_index": "2018-09", "_type": "ABC", "_id": "123", "_score": 2.2639267, "fields": { "CV": [ "foo" ], "JOB": [ "bnn" ] } } ] } }