LoginSignup
1
4

More than 3 years have passed since last update.

【Rails】画像を表示したいのに画像のURLが表示されてしまう

Last updated at Posted at 2019-08-31

はじめに

すごくしょうもないミスをしてしまったので、備忘のため残しておきます。。。

やりたいこと

画面上に画像を表示したい

問題

以下の通り画像を表示したいのに、、、
image.png

URLが表示されてしまう。
image.png

コードは以下の通り。
userテーブルに保存されている画像を表示しようとしています。

before.
.contents-image
  = @user.image

対処法

以下のようにimage_tagにしてあげればいいだけでした。

before.
.contents-image
  = @user.image
after.
.contents-image
  = image_tag @user.image, alt: 'user-icon', class: 'user-image'

最後に

しょうもないミスですが、少しハマってしまったので戒めのため。。。。

1
4
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
1
4