Find/Replace on a JSON Object Graph(codelikebozo.com)
codelikebozo.com
Find/Replace on a JSON Object Graph
http://codelikebozo.com/findreplace-on-a-json-object-graph#more
2 comments
I am not up on this but in XML world I would have used XPath. I see there are both JsonPath and JsonQuery gems that seem to be geared for this kind of stuff.
I thought they just query...? Actually, I was just prototyping this in Ruby for porting to C#... I couldn't find anything in c# to do this either. I basically have .NET objects I'm serializing out to JSON then I want to take that JSON and use what I did here and then bring it back into .NET objects. This may not be my final solution (I may opt for reflection in the end) but I want to see this solution through.
Any thoughts on how to do this better are most welcome! :)
Speaking as a non-rubyist, I notice that the last code sample features some pretty serious "pyramid building". Is the "opt out" approach not idiomatic? For comparison, I'd probably write it like this: http://pastebin.com/4P03Uqrq
My approach is definitely not idiomatic ruby so I think your point is completely valid.