I need advice on the most efficient way to handle JSON within my angular2 application.
The JSON data I am working with includes:
{
"rightUpperLogoId": {
"id": 100000,
"value": ""
},
"navbarBackgroundColorIdCss": {
"id": 100001,
"value": ""
},
"backgroundColorIdCss": {
"id": 100002,
"value": ""
},
"translationIdFrom": {
"value": "90000"
},
"translationIdTo": {
"value": "90055"
}
}
This JSON serves as a configuration file for the user interface of my application. Specifically, I am interested in retrieving the id from rightUpperLogoId, which is 100000. Upon obtaining this id, I aim to make a GET request to my backend REST API and then assign the returned value to 'value'. Any guidance or assistance on how to achieve this task would be greatly appreciated. Thank you.