JSONSelect
JSONSelect copied to clipboard
How to write an expression return a object by it's key
something like this:
var data = {
"objects" : [ ..., {
"name": "JSONSelect"
}, ...]
}
// return the child it's name is "JSONSelect"
jsonSelect.match(expr, data);
Set expr=".name" and it will do what you want.