Durante la ricerca di elementi in array e hash JSON complessi, come:
[
{ "id": 1, "name": "One", "objects": [
{ "id": 1, "name": "Response 1", "objects": [
// etc.
}]
}
]
Esiste un tipo di linguaggio di query che posso usare per trovare un elemento in [0].objects where id = 3
?
in(...).where(...).select(...)
): hugoware.net/Projects/jLinq .
data
che contiene il tuo oggetto JSON, dovresti scrivere: jsel(data).select("//*[@id=3]")
e restituirebbe l'oggetto contenente la chiave ID con 3.