Progate学習メモ
view.rb
<input name="image" type="file">
controller.rb
image = params[:image]
# File.binwrite("path_to_画像ファイルを保存するフォルダ/画像ファイル名", 画像データ.read)
File.binwrite("public/user_images/#{@user.image_name}", image.read)
Go to list of users who liked
More than 3 years have passed since last update.
Progate学習メモ
<input name="image" type="file">
image = params[:image]
# File.binwrite("path_to_画像ファイルを保存するフォルダ/画像ファイル名", 画像データ.read)
File.binwrite("public/user_images/#{@user.image_name}", image.read)
Register as a new user and use Qiita more conveniently
Go to list of users who liked