-
Notifications
You must be signed in to change notification settings - Fork 219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possibility of adding options for manipulating key names #44
Comments
👍 I have exactly the same use-case. Elixir to JS and back. A hook like this would make life much easier. |
Considering this for inclusion in 1.6. |
Extractly what i searched! :) Would be amazing to see this implemented. The base of @joshprice looks already good! |
Any update on this? I would love to have some basic support for this. |
I think what people are asking here is for an external function to be called to transform the keys. The anonymous function would be up to library user to define and pass_in, thus we avoid having it built-into Poison. |
would also be nice to have value transformations if possible... (for example decrypting an encrypted value) |
I have a use case where the input json has keys in mixed cases, sometimes |
@minhajuddin be careful with that, as iterating all keys/values each time you need to access defeats the purpose of using a map over a keyword list. A large data set will be significantly slower to access this way. I would say that a better approach would be to modify that code to attempt to fetch |
@mgwidmann Good point. Creating a new map and then using lower case keys to access makes more sense performance wise. |
The general advice is to fix data at the boundaries, when the data enters the rest of your system it should be in the correct state instead of trying to handle incorrect data everywhere in your system. That means that you should transform the map to lowercase after json decoding it instead of changing how you access the map. |
@ericmj Makes total sense. That is why I am following this issue with interest. Adding this feature will help me transform the keys at the time of decoding. I have seen cowboy do this with http headers. |
What's the status on this? |
Hi everyone, I tried a somewhat different approach here #151, maybe we can get interest in this feature rekindled |
Interested in this as well, as our existing frontend expects camelCase JSON. |
hello, any way to decode and transform keys to snake styles now? |
Hi Devin,
I was wondering how you feel about adding the option to supply a function which would enable the users of Poison to manipulate the names of keys when both encoding and decoding. It would be a simple string ->string function that can be supplied as a option with the default value being the identify function. The use case for this feature is that we use snake_case in our elixir backend but camelCase in our javascript frontend. We would like to have the serializer take of doing this conversion.
Currently we have a solution where we in case of encoding redefine the Poison.Encoder protocol implementation for Map and for decoding do a recursive run though the map resulting from calling Poison.decode. It would be nice if it was something that could be build into the serializer using a simple hook as described above.
Best Regards
Simon, Denmark
The text was updated successfully, but these errors were encountered: