i have a file JSON (export from google sheet), here's my json:
{
"Invités": {
"Boizard ": {
"Noms": "Boizard ",
"Enfants": null,
"FP": true,
"Adresse": null,
"Brunch": 7,
"Nbr FP": 2,
"OK": null,
"OK enfant": null,
"KO": null,
"Attente": null,
"mail cadeau": null,
"Remerciements": null
},
"JLV et Sylviane Chartier": {
"Noms": "JLV et Sylviane Chartier",
"Enfants": null,
"FP": true,
"Adresse": "16 av du Général de Gaulle - 94300 Vincennes",
"Brunch": 0,
"Nbr FP": 1,
"OK": null,
"OK enfant": null,
"KO": null,
"Attente": null,
"mail cadeau": null,
"Remerciements": null
},
"J.........": {
..........
..........
..........
}
}
}
i want to retrieve the data JSON from the file and the put in the array for display them with angular
thx