0
1

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 5 years have passed since last update.

アプリケーション内で使用される画像の保存場所

Last updated at Posted at 2019-10-18

設置場所

Railsではアプリケーション内で使用される画像の設置場所が2つある。

  • public ディレクトリ
  • app/assets/images ディレクトリ

書き方に注意

  • app/assets/images ディレクトリに配置した画像ファイルは/assets/画像ファイル名で参照
    • 例: <img class="about-img" src='/assets/records.png'>
  • CSSの場合
    • 例: background: image-url(’画像パス')

結論

特に理由がない場合は、app/assets/images ディレクトリに画像を設置する。

参考にさせていただいたURL

https://techblog.kyamanak.com/entry/2017/10/13/003818
https://www.javadrive.jp/rails/template/index11.html#section2

余談

progateではトップページの背景画像ファイルをpublicフォルダに格納していた。
理由は分からない。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?