Add a way to navigate multiple json layers at once. #4794
Closed
Lenny-the-burger
started this conversation in
Ideas
Replies: 2 comments 1 reply
-
Beta Was this translation helpful? Give feedback.
0 replies
-
That is exactly what I was looking for don't know how I did not find it, thank you. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Lets say i have some object
json data = {a:{b:{c:0}}}
and to get 0, you can dodata[a][b][c]
, but i think there should be a way to just do likedata.get({a,b,c})
. Yes you can write your own helper function to do this and with pointers not even have to waste a bunch of time copying json data around, but I think that this is something that should be possible normally.Beta Was this translation helpful? Give feedback.
All reactions