top of page

Extracting values from a JSON data file

You can use a Java script to extract the values from the intricate fields listed in a JSON data file. Slack, and many other applications used for exchanging data, use JSON, which is JavaScript object notation.


If you have collected a JSON data file which looks like this:


{

"Acme": {

"Department": "Finance",

"Group": "Investments",

"year": 2020,

"custodians": ["Smith", "Jones", "Wilson"],

"litigation": "Riley v. Acme",

"price": {

"1 widget": "$250", "2 widgets": "$420", "4 widgets": "$1200"

}

}

}`



. . . a Java script can help you pull out the substantive information. On Chrome, right click and select 'Inspect'. In the developer pane which opens click on the Console tab. Enter the below script which includes the text of the JSON data file:


// apps.js


let discovery = `{

"Acme": {

"Department": "Finance",

"Group": "Investments",

"year": 2020,

"custodians": ["Smith", "Jones", "Wilson"],

"litigation": "Riley v. Acme",

"price": {

"1 widget": "$250", "2 widgets": "$420", "4 widgets": "$1200"

}

}

}`;


// Converting JSON object to JS object

let obj = JSON.parse(discovery);


// Define recursive function to print nested values

function printValues(obj) {

for(let k in obj) {

if(obj[k] instanceof Object) {

printValues(obj[k]);

} else {

console.log(obj[k]);

};

}

};


// Printing all the values from the resulting object

printValues(obj);


When you press ENTER the script will generate at the end of the Console, a list of the values from the data file:



Thanks to Krunal Lathiya for posting this script here!

4 Comments


WKDU TRBD
WKDU TRBD
Jan 06

代发外链 提权重点击找我;

谷歌蜘蛛池 谷歌蜘蛛池;

Fortune Tiger…

Fortune Tiger…

谷歌权重提升/ 谷歌权重提升;

谷歌seo 谷歌seo;

谷歌霸屏 谷歌霸屏

蜘蛛池 蜘蛛池

谷歌快排 谷歌快排

Google外链 Google外链

谷歌留痕 谷歌留痕

Gái Gọi…

Gái Gọi…

Dịch Vụ…

谷歌霸屏 谷歌霸屏

负面删除 负面删除

币圈推广 币圈推广

Google权重提升 Google权重提升

Google外链 Google外链

google留痕 google留痕

Like

BFVY IRTO
BFVY IRTO
Dec 28, 2024

代发外链 提权重点击找我;

游戏推广 游戏推广;

Fortune Tiger Fortune Tiger;

Fortune Tiger Slots Fortune…

谷歌马甲包/ 谷歌马甲包;

谷歌霸屏 谷歌霸屏;

מכונות ETPU מכונות ETPU;

;ماكينات اي تي بي…

آلات إي بي بي…

ETPU maşınları ETPU maşınları;

ETPUマシン ETPUマシン;

ETPU 기계 ETPU 기계;

Like

WKDU TRBD
WKDU TRBD
Dec 28, 2024

代发外链 提权重点击找我;

谷歌蜘蛛池 谷歌蜘蛛池;

Fortune Tiger Fortune Tiger;

Fortune Tiger Slots Fortune…

谷歌权重提升/ 谷歌权重提升;

谷歌seo 谷歌seo;

מכונות ETPU מכונות ETPU;

Машини ETPU Машини ETPU

ETPU-Maschinen ETPU-Maschinen

EPS-машины EPS-машины

ЭПП-машины ЭПП-машины� بي يو

ETPU maşınları ETPU maşınları

ETPUマシン ETPUマシン

ETPU 기계 ETPU 기계

Like

AVXJ KAZD
AVXJ KAZD
Dec 26, 2024

代发外链 提权重点击找我;

google留痕 google留痕;

Fortune Tiger Fortune Tiger;

Fortune Tiger Fortune Tiger;

Fortune Tiger Slots Fortune…

站群/ 站群;

万事达U卡办理 万事达U卡办理;

VISA银联U卡办理 VISA银联U卡办理;

U卡办理 U卡办理;

万事达U卡办理 万事达U卡办理;

VISA银联U卡办理 VISA银联U卡办理;

U卡办理 U卡办理;

온라인 슬롯 온라인 슬롯;

온라인카지노 온라인카지노;

바카라사이트 바카라사이트;

EPS Machine EPS Machine;

EPS Machine EPS Machine;

EPS Machine EPS Machine;

EPS Machine EPS Machine;

Like
bottom of page