実現したいこと
Ransackでプルダウンで絞り込みをする際、選択肢をViewで表示させたいです。
現状の問題点
下記のように絞り込み選択の表示がActiveHashで作成したidになってしまう。
https://gyazo.com/b8ddb4d977223c9fcbe2bc78c5e435df
商品検索
野球歴 5
仮 5 3 5 岩手県
山田太郎 3 4 2 茨城県
田中太郎 4 3 6 埼玉県
コード
htmlerb
1<h1> 2 商品検索 3</h1> 4<%= search_form_for @p, url: users_search_path do |f| %> 5 <%= f.label :term_id_eq, '野球歴' %> 6 <%= f.collection_select :term_id_eq, User.select("term_id").distinct, :id, :term_id, include_blank: '指定なし' %> 7 <br> 8 <%= f.submit '検索' %> 9 <br> 10 <%# 商品一覧 %> 11 <% @users.each do |user| %> 12 <td> 13 <br> 14 <li> 15 <%= user.name %> 16 <%= user.term_id %> 17 <%= user.level_id %> 18 <%= user.frequency_id %> 19 <%= user.prefecture.name %> 20 </li> 21 <% end %> 22<% end %>
usercontrollererb
1class UsersController < ApplicationController 2 before_action :search_term_id, only: [:index, :search] 3 4 def index 5 @users = User.all 6 @user = User.where(category_id: params[:id]).order('created_at DESC') 7 end 8 9 def search 10 @results = @p.result 11 end 12 13 private 14 15 def search_term_id 16 @p = User.ransack(params[:q]) 17 end 18 19 def set_user_column 20 @user_term_id = User.select('term_id').distinct # 重複なくnameカラムのデータを取り出す 21 end 22end
termrb
1class Term < ActiveHash::Base 2 self.data = [ 3 { id: 1, name: '--' }, 4 { id: 2, name: '社会人野球' }, 5 { id: 3, name: '大学野球' }, 6 { id: 4, name: '高校野球' }, 7 { id: 5, name: '中学野球' }, 8 { id: 6, name: '趣味程度' }, 9 { id: 7, name: '初心者' } 10 ] 11 12 include ActiveHash::Associations 13 has_many :users 14end
試したこと
第4引数をnameに変更。しかしエラー
https://gyazo.com/8f70e433ac0930c7c30bc8413a461dc8
<%= f.collection_select :term_id_eq, User.select("term_id").distinct, :id, :name, include_blank: '指定なし' %>
ActiveModel::MissingAttributeError in Users#index Showing /Users/kamiyatakashi/projects/kusayakyu/app/views/users/index.html.erb where line #6 raised: missing attribute: name Extracted source (around line #6): 4 5 6 7 8 9 <%= search_form_for @p, url: users_search_path do |f| %> <%= f.label :term_id_eq, '野球歴' %> <%= f.collection_select :term_id_eq, User.select("term_id").distinct, :id, :name, include_blank: '指定なし' %> <br> <%= f.submit '検索' %> <br> Rails.root: /Users/kamiyatakashi/projects/kusayakyu Application Trace | Framework Trace | Full Trace app/views/users/index.html.erb:6 app/views/users/index.html.erb:4 Request Parameters: None
どうかご教示いただける幸甚です。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/25 11:36