LoginSignup
1
1

More than 1 year has passed since last update.

Rails + React 画像読み込み方法

Posted at

手順

  1. 画像ファイルを app/assets/images へ配置
  2. config/webpacker.yml に追記
  3. jsx ファイルに Component を作成

1. 画像ファイルを app/assets/images へ配置

適当な画像ファイルをapp/assets/imagesへ配置します。

2. config/webpacker.yml に追記

config/webpacker.yml
  # Additional paths webpack should lookup modules
  # ['app/assets', 'engine/foo/app/assets']

  # resolved_pathsを下記のように変更
  resolved_paths: ["app/assets/images"]

3. jsx ファイルに Component を作成

test.jsx
import Image from 'test.png';

export default function TestComponent(props) {
    // ImageComponent 作成
    const ImageComponent = p => <img src={Image} />
    return (
        // ImageComponent 読み込み
        <ImageComponent></ImageComponent>
    );
}

参考

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