0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

画像の登録と表示

Posted at

##動作
1 htmlで送られてきた画像はフォルダに登録して、画像名はDBに登録する
2 表示する時はDBから画像名を取得して、フォルダをみに行く

###登録
####コントローラーの書き方

ファイルの作成方法
Fileクラスのwriteメソッドを使って画像を登録
File.write(ファイルの場所, ファイルの中身)

def update
    @user = User.find_by(id: params[:id])
    @user.name = params[:name]
    @user.email = params[:email]
    @user.image_name = "#{@user.id}.jpg" 
    image = params[:image]
    File.binwrite("public/user_images/#{@user.image_name}", image.read)      
end

###htmlの書き方
<%= form_tag("/users/#{@user.id}/update", {multipart: true}) do %>

ユーザー名



画像


<input type="file" name="image"

メールアドレス




<% end %>

###表示

###htmlの書き方
画像を表示

# "/user_image/ スラで始まる
# Rubyのコード部分は<%= %>で囲む
<img src="<%="/user_image/#{@user.image_name}" %>"> 
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?