初めて質問させていただきます。
よろしくお願いします。
railsで写真投稿機能サイトを作成しようと思っております。
グループを作成し、そのグループを選択すると写真が表示するようにしたいのですが、そのグループを選択するためのform_for文を作成したのですが、エラーが出てしまいます。
発生している問題・エラーメッセージ
NoMethodError in Groups#index Showing /Users/user/Desktop/my-truth/app/views/photos/_top_bar.html.haml where line #13 raised: undefined method `to_key' for #<Group::ActiveRecord_Relation:0x00007facd285af08> Did you mean? to_set to_ary .contents__user__group__box .group = form_for @group do |form| ⇦ ここにラインが引かれています = form.collection_select :name, placeholder: "グループを選択してください"
該当のソースコード
indexhaml
1.contents 2 .contents__user 3 .contents__user__box 4 = current_user.name 5 .contents__user__group 6 .contents__user__group__box 7 .group 8 = form_for @group do |form| 9 = form.collection_select :name, placeholder: "グループを選択してください" 10 11
groupcontroller
1class GroupsController < ApplicationController 2 def index 3 @group = Group.all 4 5 end 6 7 def new 8 @group = Group.new 9 @group.users << current_user 10 end 11 12 def create 13 @group = Group.new(group_params) 14 if @group.save 15 redirect_to root_path, notice: 'グループを作成しました' 16 else 17 render :new 18 end 19 end 20 21 def edit 22 @group = Group.find(params[:id]) 23 end 24 25 def update 26 @group = Group.find(params[:id]) 27 if @group.update(group_params) 28 redirect_to root_path,notice: 'グループを更新しました' 29 else 30 render :edit 31 end 32 end 33 34 private 35 def group_params 36 params.require(:group).permit(:name, user_ids:[]) 37 end 38 39end
routes
1Rails.application.routes.draw do 2 devise_for :users 3 root "groups#index" 4 resources :users, only: [:edit, :update, :destroy, :show] 5 resources :groups, only: [:index, :new, :create, :edit, :update]do 6 resources :photos, only: [:index, :new, :create, :show] 7 end 8end
試したこと
@group = Group.find(params[:id])がコントローラのindexに必要かと思い試したのですが、エラーでありました。
補足情報(FW/ツールのバージョンなど)
初めてで、かつまだまだ理解できてないところもあり、お手数かけますが、回答お願い致します。
また、ここはこうした方が良いといったこともおっしゃってもらえたら嬉しいです。
よろしくお願いします。
あなたの回答
tips
プレビュー