2021-07-14から1日間の記事一覧

simple_form

simple_formとは 入力フォームを簡単に作成できるgemです。 導入方法 Gemfileに gem 'simple_form' としてbundle installします。 rails g simple_form:install bootstrapを適用したい場合は下記 rails g simple_form:install --bootstrap こちらのコマンド…

Active Storageで画像をアップロード

Active Storageとは ファイルアップロードを簡単に実装できるgemです。 railsの標準のgemで、rails5.2から追加されました。 scaffoldアプリの作成 rails new active_storage_app 名前はactive_storage_appとしておきます。 rails newしたら cd active_storag…