Formatters & Code
JSON naar Elixir Struct
Elixir structs with @enforce_keys and typespecs.
Redactionele opmerking
Understanding · Structs, maps, and the @enforce_keys trick.
Dit uitgebreide hoofdstuk is momenteel alleen in het Engels beschikbaar. De conversietool hierboven werkt in jouw taal; de lange uitleg is nog niet vertaald.
Veelgestelde vragen
Quick answers.
›How are JSON types mapped to Elixir types?
Strings map to `String.t()`, numbers to `number()` or `float()`, booleans to `boolean()`, and nulls are handled as `nil`. Nested objects are converted into internal map definitions or separate struct placeholders.
›Does this tool handle nested JSON objects?
Yes. It will generate typespecs for nested structures, though you may need to manually extract nested maps into their own named modules for better Elixir project organisation.
›What is the purpose of @enforce_keys in the output?
The generator identifies keys present in your JSON and includes them in `@enforce_keys` to ensure the struct cannot be initialised without those specific attributes.
›Is my data sent to a backend for processing?
No. All transformation from JSON to Elixir code happens locally within your browser using JavaScript. No data is transmitted over the network.
Mensen zoeken ook naar
Gerelateerde tools
More in this room.
- JSON naar TypeScript InterfaceLeid typen af van een JSON-voorbeeld en genereer TS-interfaces.
- JSON naar C# KlasseGenereer POCO-klassen vanuit een JSON-voorbeeld.
- JSON naar Java POJOGenereer een Java POJO vanuit een JSON-voorbeeld.
- JSON naar Python DataclassType-hinted dataclasses (met optionele Pydantic) van JSON.
- JSON naar Go StructIdioom Go structs met `json:` tags.
- JSON naar Kotlin Data ClassBeknopte dataclasses voor elk JSON-voorbeeld.