I have a file that gets a json response like this:
{
total": 86,
"data": [
{
"Id": 2,
"Name": "User One",
"Shipping": 1,
"Created": "25 March 2017"
},
{
"Id": 3,
"Name": "User Two",
"Shipping": 2,
"Created": "25 March 2017"
},
{
"Id": 4,
"Name": "User Three",
"Shipping": 3,
"Created": "26 March 2017"
}
]
}
I want to run through this result and change all the Shipping values to:
1 Post Office
2 PostNet
3 Courier
In my code I do:
$.each(data.data, function () {
$.each(this, function (key, value) {
if(key == 'Shipping') {
switch(value) {
case 2:
? = 'PostNet';
break;
case 2:
? = 'Courier';
break;
default:
? = 'Post Office';
break;
}
}
});
});
I don't know how to get the right array key so I can change it, that's where I put the ?.
Can anyone please help?