Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
746 views
in Technique[技术] by (71.8m points)

elixir - Render static html page in a controller

Is there a way to read and render a static html file located at another part on server in the controller ? I am not looking to redirect or serve this page via static pages functionality.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You should use Plug.Conn.send_file/5 for this. This function will send the contents of the file more efficiently than reading the whole file into memory and then sending it using Phoenix.Controller.html/2:

conn
|> put_resp_header("content-type", "text/html; charset=utf-8")
|> Plug.Conn.send_file(200, "/path/to/html")

Note that I had to manually add the content-type header to get the same behavior as Phoenix.Controller.html/2.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...