***
chatアプリにグループ用のtweet機能を実装中です。
tweetがデータベースに保存されないのでビューで表示できません。
初学者なので初歩的な問題だとは思いますが、
改善点アドバイス頂けたら嬉しいです
発生している問題・エラーメッセージ
binding.pry
1From: /app/controllers/tweets_controller.rb:14 TweetsController#create: 2 3 13: def create 4 => 14: binding.pry 5 15: Tweet.create(tweet_params) 6 16: end 7 8[1] pry(#<TweetsController>)> params 9=> <ActionController::Parameters {"authenticity_token"=>"tXmka3k6NR+ANbH6Yn6ALOULqrIl58POTA+n3v13fPH2k+L2TFhwJoVYxoVvWr2BYI8ukvOyvMPW82xI2vJvbA==", "tweet"=>{"name"=>"", "image"=>"", "text"=>"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"}, "commit"=>"SEND", "controller"=>"tweets", "action"=>"create", "group_id"=>"9"} permitted: false>
該当のソースコード
routes.rb
1Rails.application.routes.draw do 2 resources :posts 3 devise_for :users 4 root "groups#index" 5 resources :users, only: [:edit, :update, :index] 6 resources :groups, only: [:index, :new, :create, :edit, :update, :destroy] do 7 resources :tweets 8 resources :messages, only: [:index, :create, :destroy] do 9 10 namespace :api do 11 resources :messages, only: :index, defaults: { format: 'json' } 12 end 13 end 14end
tweets_controller.rb
1class TweetsController < ApplicationController 2 before_action :set_group 3 4 def index 5 @tweets = Tweet.all 6 end 7 8 def new 9 @tweet = Tweet.new 10 end 11 12 def create 13 Tweet.create(tweet_params) 14 end 15 16 def destroy 17 tweet = Tweet.find(params[:id]) 18 tweet.destroy 19 end 20 21 def edit 22 @tweet = Tweet.find(params[:id]) 23 end 24 25 def update 26 tweet = Tweet.find(params[:id]) 27 tweet.update(tweet_params) 28 end 29 30 private 31 def tweet_params 32 params.require(:tweet).permit(:name, :image, :text) 33 end 34 35 def set_group 36 @group = Group.find(params[:group_id]) 37 end 38end
groups_controller.rb
1class GroupsController < ApplicationController 2 3 def index 4 @groups = Group.all 5 @tweets = Tweet.all 6 end 7 8 def new 9 @group = Group.new 10 @group.users << current_user 11 @tweet = Tweet.new 12 13 end 14 15 def create 16 @group = Group.new(group_params) 17 if @group.save 18 redirect_to root_path, notice: 'グループを作成しました' 19 else 20 render :new 21 end 22 Tweet.create(tweet_params) 23 end 24 25 def edit 26 @group = Group.find(params[:id]) 27 end 28 29 def update 30 @group = Group.find(params[:id]) 31 if @group.update(group_params) 32 redirect_to group_messages_path(@group), notice: 'グループを更新しました' 33 else 34 render :edit 35 end 36 tweet = Tweet.find(params[:id]) 37 tweet.update(tweet_params) 38 end 39 40 def destroy 41 group = Group.find(params[:id]) 42 group.destroy 43 redirect_to root_path, notice: 'グループを削除しました' 44 tweet = Tweet.find(params[:id]) 45 tweet.destroy 46 end 47 48 private 49 def group_params 50 params.require(:group).permit(:name, user_ids: []) 51 end 52 def tweet_params 53 params.require(:tweet).permit(:name, :image, :text) 54 end 55end
_create_tweets.rb
1class CreateTweets < ActiveRecord::Migration[6.0] 2 def change 3 create_table :tweets do |t| 4 t.string :name 5 t.string :text 6 t.text :image 7 t.references :group, foreign_key: true 8 t.references :user, foreign_key: true 9 t.timestamps 10 end 11 end 12end
_create_groups.rb
1class CreateTweets < ActiveRecord::Migration[6.0] 2 def change 3 create_table :tweets do |t| 4 t.string :name 5 t.string :text 6 t.text :image 7 t.references :group, foreign_key: true 8 t.references :user, foreign_key: true 9 t.timestamps 10 end 11 end 12end
あなたの回答
tips
プレビュー