本の投稿ができるアプリを作成しています。
自分の投稿が一覧で表示させたいのですが、データがうまく保存できていないのか表示されず同じページが表示されてしまいます。
エラーは特に出ておりません。
ご確認頂ければと思います。
show.html.erb
<%= render 'shared/header' %> <div class="top"> <div class="container"> <div class="row"> <div class="col-lg-3"> <p>User info</p> <%= attachment_image_tag @user, :profile_image_id, :fill, 250, 250, format: 'jpeg', fallback: "no_image.jpg", size:'250x250' %> <table class="table"> <tr> <th>name</th> <th><%= current_user.name %></th> </tr> <tr> <th>introduction</th> <th><%= current_user.introduction %></th> </tr> </table> <%= link_to edit_user_path, class: "btn btn-default" do %> <i class="fa fa-wrench"></i> <% end %> <p>New book</p> #ここから投稿欄 <%= form_for(@book, url: '/users') do |f| %> <p>Title</p> <%= f.text_field :title %> <p>Opinion</p> <%= f.text_area :body %> <%= f.submit 'Create Book' %> <% end %> #ここまで </div> <div class="col-lg-9"> <p>Books</p> <table class="table table-hover"> <thead> <tr> <th></th> <th>Title</th> <th>Opinion</th> </tr> </thead> #ここから投稿一覧 <% @books.each do |book| %> <tbody> <tr> <td>名前、写真</td> <td><%= book.title %></td> <td><%= book.body %></td> </tr> </tbody> <% end %> #ここまで </table> </div> </div> </div> </div> <%= render 'shared/footer' %>
20191003161330_create_books.rb
class CreateBooks < ActiveRecord::Migration[5.0] def change create_table :books do |t| t.string :title t.text :body t.integer :user_id t.timestamps end end end
users_controller.rb
class UsersController < ApplicationController def index @user = current_user @users = User.all @book = Book.new end def show @user = User.find(params[:id]) @book = Book.new @books = @user.books end def edit @user = User.find(params[:id]) end def update @user = User.find(params[:id]) user.update(user_params) redirect_to user_path(@user) end private def user_params params.require(:user).permit(:name, :introduction, :profile_image_id) end end
books_controller.rb
class BooksController < ApplicationController before_action :authenticate_user!, only: [:show] def create book = Book.new(book_params) book.user = current_user book.save redirect_to '/books/:id' end def index end def show @book = Book.find(params[:id]) end def edit @book = Book.find(params[:id]) end def update @book = Book.find(params[:id]) book.update(book_params) redirect_to user_path(@user) end private def book_params params.require(:book).permit(:title, :body) end end
user.rb
class User < ApplicationRecord # Include default devise modules. Others available are: # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable devise :database_authenticatable, :registerable, :recoverable, :rememberable, :trackable, :validatable has_many :books, dependent: :destroy attachment :profile_image end
book.rb
class Book < ApplicationRecord belongs_to :user end
books_controller.rbが掲載されてません。ので、原因はわかりません。
ついでに掲載されているusers_controller.rbを読むと、Userのデータ自体保存されないように見受けられます。
回答1件
あなたの回答
tips
プレビュー