Formatadores e Código
JSON para Elixir Struct
Elixir structs with @enforce_keys and typespecs.
Nota do editor
Understanding · Structs, maps, and the @enforce_keys trick.
Este capítulo aprofundado está disponível apenas em inglês no momento. A ferramenta de conversão acima funciona no seu idioma; o artigo explicativo longo ainda não foi traduzido.
Perguntas frequentes
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.
As pessoas também pesquisam por
Ferramentas relacionadas
More in this room.
- JSON para Interface TypeScriptInferir tipos de uma amostra JSON e emitir interfaces TS.
- JSON para Classe C#Gerar classes POCO de uma amostra JSON.
- JSON para Java POJOEmitir um Java POJO de uma amostra JSON.
- JSON para Python DataclassDataclasses tipadas (com Pydantic opcional) de JSON.
- JSON para Go StructStructs Go idiomáticas com tags `json:`.
- JSON para Kotlin Data ClassClasses de dados concisas para qualquer amostra JSON.