0
我使用phoenix框架創建一個網頁並創建了一個上傳表單,以使用戶可以上傳一個profil圖片。phoenix elixir二進制數據圖像
def update(conn, %{"id" => id, "user" => %{"photo" => file}}) do
if(File.exists?(file.path)) do
case File.read(file.path) do
{:ok, body} -> data = IO.iodata_to_binary(body)
changeset = Whiteboard.File.changeset(%Whiteboard.File{}, %{user_id: currentuser.id, name: file.filename , data: data})
這樣工作和二進制數據在數據庫中是bytea/binary。
現在我的問題:我如何渲染phoenix html.eex文件中的二進制數據以再次顯示圖像?
編輯:找到一個解決方案
def render("image.html", %{:height => height, :width => width, :data => data, :datatype => datatype}) do
pic = Base.encode64(data)
Phoenix.HTML.raw("<img src=\"data:image/"<>datatype<>";base64,"<>pic<>"\" height=\""<>height<>"\" width=\""<>width<>"\">")
end
所以優點是在性能 - 緩存?你能舉個例子嗎,怎麼這樣做? (我只用phoenix/elixir工作2周) – murphy1312
我只是談論普通的HTTP緩存。如果您使用其他信息來描述文件上次更改的時間或使用etag,則客戶端可以緩存該映像,並且可以減少帶寬使用量。起初我不擔心。 – asonge