2021-09-06から1日間の記事一覧

複数ファイルのアップロード

複数ファイルのアップロード 複数ファイルをアップロードしたい時は、以下のように記述する(simple_formの場合) [app/views ファイル] = f.input :main_images, as: :file, input_html: { multiple: true } # input_html: { multiple: true } というオプショ…

Swiper

Swiper Swiperは、画像などを動的にスライドできるjQueryのプラグイン 導入手順は、以下のようになる $ yarn add swiper ↓ [node_modules]にswiperがインストールされる swiperの公式にあるように[swiper-bundle.css]と[swiper-bundle.js]を読み込むようにし…