Conduit v0.8.3 Conduit.Plug.Format View Source
Formats the message body based on the content type.
It uses in order of preference:
- The content type specified for the plug.
- The content type specified on the message.
- The default content type
text/plain
.
This plug should be used in an outgoing pipeline.
Examples
plug Conduit.Plug.Format
plug Conduit.Plug.Format, content_type: "application/json"
iex> import Conduit.Message
iex> message =
iex> %Conduit.Message{}
iex> |> put_body(%{})
iex> |> Conduit.Plug.Format.run(content_type: "application/json")
iex> message.body
"{}"
iex> message.content_type
"application/json"
Link to this section Summary
Functions
Formats the message body based on the content type
Callback implementation for Conduit.Plug.init/1
Callback implementation for Conduit.Plug.run/2
Link to this section Functions
Formats the message body based on the content type.
Callback implementation for Conduit.Plug.init/1
.
Callback implementation for Conduit.Plug.run/2
.