Response
Make Response
You can return json
, html
and text
directly.
json
, html
and text
directly.conn |> json(%{hello: :world})
conn |> html("<html><body>body</body></html>")
conn |> text("return text")
Redirecting
You can redirect to a new url temporarily (302) or permanently (301).
conn |> redirect('/statuses')
conn |> redirect('/statuses', permanent: true)
Updated less than a minute ago