active_hashの使い方について!!
某プログラミングスクールでフリマアプリを作成する際にactive_hashを使ってみたので是非見て下さい!!
初学者の書いた記事ですが参考になれば嬉しいです
そもそもactive_hashとは?
・DBにデータとして保存しておくほど重要ではない。
・基本的に変更されない。
・Active_Recordのように読み込み専用情報をまとめたハッシュを扱うことができるものです。
1.gem 'active_hash'をインストール
アプリのGemfileに以下を記述
gem 'active_hash'
ターミナルでbundle installを実行
$ bundle install
2.Active_Hash::Baseを継承しているモデルを作成する
ActiveHash::Baseを継承したモデルを自作する。
今回は良くactive_hashが利用される事の多いprefecture(都道府県)モデルを作成していきます。
app/models/prefecture.rbという感じで自作します。
class Prefecture < ActiveHash::Base
self.data = [
{id: 1, name: '北海道'}, {id: 2, name: '青森県'}, {id: 3, name: '岩手県'},
{id: 4, name: '宮城県'}, {id: 5, name: '秋田県'}, {id: 6, name: '山形県'},
{id: 7, name: '福島県'}, {id: 8, name: '茨城県'}, {id: 9, name: '栃木県'},
{id: 10, name: '群馬県'}, {id: 11, name: '埼玉県'}, {id: 12, name: '千葉県'},
{id: 13, name: '東京都'}, {id: 14, name: '神奈川県'}, {id: 15, name: '新潟県'},
{id: 16, name: '富山県'}, {id: 17, name: '石川県'}, {id: 18, name: '福井県'},
{id: 19, name: '山梨県'}, {id: 20, name: '長野県'}, {id: 21, name: '岐阜県'},
{id: 22, name: '静岡県'}, {id: 23, name: '愛知県'}, {id: 24, name: '三重県'},
{id: 25, name: '滋賀県'}, {id: 26, name: '京都府'}, {id: 27, name: '大阪府'},
{id: 28, name: '兵庫県'}, {id: 29, name: '奈良県'}, {id: 30, name: '和歌山県'},
{id: 31, name: '鳥取県'}, {id: 32, name: '島根県'}, {id: 33, name: '岡山県'},
{id: 34, name: '広島県'}, {id: 35, name: '山口県'}, {id: 36, name: '徳島県'},
{id: 37, name: '香川県'}, {id: 38, name: '愛媛県'}, {id: 39, name: '高知県'},
{id: 40, name: '福岡県'}, {id: 41, name: '佐賀県'}, {id: 42, name: '長崎県'},
{id: 43, name: '熊本県'}, {id: 44, name: '大分県'}, {id: 45, name: '宮崎県'},
{id: 46, name: '鹿児島県'}, {id: 47, name: '沖縄県'}
]
end
3.アソシエーションを組みます
今回はフリマアプリを作成しているので、商品の配送先を登録するときに都道府県をactive_hashを使って表示します。
product.rbにアソシエーションを組んでいきます。
class Product < ApplicationRecord
extend ActiveHash::Associations::ActiveRecordExtensions
belongs_to_active_hash :prefecture
end
4.表示します
商品を登録するフォームなどでcollection_selectを使う際は以下のように表示できます。
= f.collection_select :prefecture_id, Prefecture.all, :id, :name, {prompt:"選択してください"}, {class:""}
5.登録した情報を表示したいとき
= @product.prefecture.name
= @product.prefecture.name
この様な感じでactive_hashを使う事ができます!!
最後まで見て頂きありがとうございます
少しでも参考になって頂ければ嬉しいです
Author And Source
この問題について(active_hashの使い方について!!), 我々は、より多くの情報をここで見つけました https://qiita.com/__KJ__/items/78f82afa7ffdafaf3735著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .