userとblogに対してアソシエーションを組んだ後にEdit(編集)が効かなくなりました。
user.rb
ruby
1class User < ApplicationRecord 2 # Include default devise modules. Others available are: 3 # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable 4 devise :database_authenticatable, :registerable, 5 :recoverable, :rememberable, :validatable 6 has_many :tweets 7 has_many :comments 8 has_many :blogs 9end 10
blog.rb
ruby
1class Blog < ApplicationRecord 2 belongs_to :user 3end 4
No template for interactive request
BlogsController#edit is missing a template for request formats: text/html
とエラーが出ます。
ビューのコード
haml
1 %tbody 2 - @blogs.each do |blog| 3 %tr 4 %td= blog.title 5 %td= blog.start_time.strftime("%Y-%m-%d %H:%M") 6 %td= link_to 'Show', blog 7 %td= link_to 'Edit', edit_blog_path(blog.id) 8 %td= link_to 'Destroy',blog_path(blog.id), method: :delete, data: { confirm: 'Are you sure?' }
blogsコントローラー
rails
1class BlogsController < ApplicationController 2 3 def index 4 @blogs = Blog.all 5 @tweets = Tweet.all 6 end 7 def new 8 @blog = Blog.new 9 @tweet = Tweet.find(params[:id]) 10 end 11 12 def show 13 @blog = Blog.find(params[:id]) 14 end 15 16 def create 17 @blog = current_user.blogs.new(blog_parameter) 18 @blog.save 19 redirect_to blogs_path 20 # if @blog.save 21 # redirect_to blogs_path 22 # else 23 # redirect_to new_blog_path 24 # end 25 end 26 27 def destroy 28 @blog = Blog.find(params[:id]) 29 @blog.destroy 30 redirect_to blogs_path, notice:"削除しました" 31 end 32 33 def edit 34 @blog = Blog.find(params[:id]) 35 end 36 37 def update 38 @blog = Blog.find(params[:id]) 39 if @blog.update(blog_parameter) 40 redirect_to blogs_path, notice: "編集しました" 41 else 42 render 'edit' 43 end 44 end 45 46 private 47 48 def blog_parameter 49 params.require(:blog).permit(:title, :content, :start_time) 50 end 51 52end
ご教授願えたら助かります。
よろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/29 09:03
2020/07/29 11:42