I'm looking for some kind of tutorial/example of serializing structs into json with Poison lib in Phoenix app. I've found such example: https://robots.thoughtbot.com/building-a-phoenix-json-api but it's not using Poison and it isn't covering structs with nested map of structs. I've also tried this answer: https://stackoverflow.com/a/34751835/4409736 but I've failed to implement it properly. I want to serialize map of structs having has_many relation with another struct from my controller. Has anybody seen something like that or could help me with such a case?
Serializing many to one relation with Phoenix
363 Views Asked by michalSolarz At
1
There are 1 best solutions below
Related Questions in ELIXIR
- Multiline comment in Elixir
- Output tabular data with IO.ANSI
- Does Elixir have coding standards or an authoritative style guide published by the language developers, like PEP8 or the Erlang Programming Rules?
- Check if a URL is valid in elixir
- Elixir exrm release crashes on eredis start_link
- Writing a library that works for BitStrings or Lists
- Elixir exrm console works but application does not start automatically
- Why do I receive a FunctionClauseError ("no function clause matching") in this Elixir program, translated from Erlang?
- Expect-like functionality to IO.gets?
- How to stub (or prevent running) of a call to a worker in my ExUnit test?
- Is Elixir's System.cmd blocking
- Elixir - Nested JSON parsing to structs
- What is the number that shows up after you define an anonymous function in elixir?
- Using System.cmd within a Poolboy worker (gen_server) causes silent failure
- How Can We Clear the Screen in Iex on Windows
Related Questions in PHOENIX-FRAMEWORK
- How to stub (or prevent running) of a call to a worker in my ExUnit test?
- Using System.cmd within a Poolboy worker (gen_server) causes silent failure
- Rails' before_filter equivalent in Phoenix
- How to Log something in Controller when Phoenix Server is running?
- Select Field in Phoenix Templates
- How to delete a Phoenix Session?
- Plug.Conn.assign not working when called from a Pipeline Plug
- Where can I put my Plugs and then use them from different controllers in my Phoenix app?
- How to get a variable value from Environment files in Phoenix?
- full text search for phoenix framework
- Print the record count using Phoenix/Ecto from the terminal
- In a Phoenix application, what is the difference between the :port key of the :http and :url configurations?
- Elixir/Phoenix multiple applications on same machine
- Using Elixir Plug.conn.assigns in multiple modules
- How to populate a database in Phoenix/Elixir on a server?
Related Questions in ELIXIR-POISON
- Retrieving response payload elements from XMLHttpRequest
- Get data from a JSON Array
- hex dependencies not found for elixir project - poison, absinthe
- Elixir decode with Poison
- Ajax POST request not hitting Elixir router path
- AJAX Post request error: "can't be blank", [validation: :required] When sending JSON object in POST body
- Encode a tuple of strings with poison
- JSON encode GEO.Point from geo library as human readable form
- Elixir POST file to Heroku file Attachment Scanner add-on
- Poison cannot parrse a json string that has 0 prefix
- Poison.decode/2 is undefined in production
- Elixir: find by value prefix in nested JSON
- Getting argument error when fetching data from API and decoding with Poison
- Serializing many to one relation with Phoenix
- ssl.cipher_suites/0 is undefined or private, use cipher_suites/2,3 instead (ssl 10.4.1) :ssl.cipher_suites()
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can use simply
defimplfor Poison.Encoder protocol and implement customencode. You will need to do it directly in model file and that way you can add additional fields or simply ensure that relation is properly loaded.For getting the relation items you can simply use private function with assoc/2 and then use it as a field in
encode.