在Rails中,您可以直接呈现文本,例如render :text => 'OK'
在Elixir/凤凰中是否有直接呈现文本的快捷方式,而不必定义模板或布局?
我发现的最短的途径是:
defmodule MyApp.PageController do
use MyApp.Web, :controller
def index(conn, _params) do
# the file ok.html.eex contains just the string OK
render conn, "ok.html", lay