前提・実現したいこと
rails6で下記のリンクを参考にActiontextをインストールしました。
リンク内容
http://localhost:3000/posts
リンク内容
Crate Post をクリックすると
ActiveModel::UnknownAttributeError in PostsController#create
と表示されるので、このエラーを解決したい。
発生している問題・エラーメッセージ
Ruby
1http://localhost:3000/posts 2 3ActiveModel::UnknownAttributeError in PostsController#create 4unknown attribute 'content' for Post. 520 621 def create 722 @post = Post.new(post_params) 823 924 respond_to do |format| 1025 if @post.save
該当のソースコード
Ruby
1class PostsController < ApplicationController 2before_action :set_post, only: [:show, :edit, :update, :destroy] 3 4 def index 5 @posts = Post.all 6 end 7 8 def show 9 end 10 11 12 def new 13 @post = Post.new 14 end 15 16 17 def edit 18 end 19 20 21 def create 22 @post = Post.new(post_params) 23 24 respond_to do |format| 25 if @post.save 26 format.html { redirect_to @post, notice: 'Post was successfully created.' } 27 format.json { render :show, status: :created, location: @post } 28 else 29 format.html { render :new } 30 format.json { render json: @post.errors, status: :unprocessable_entity } 31 end 32 end 33 end 34 35 36 def update 37 respond_to do |format| 38 if @post.update(post_params) 39 format.html { redirect_to @post, notice: 'Post was successfully updated.' } 40 format.json { render :show, status: :ok, location: @post } 41 else 42 format.html { render :edit } 43 format.json { render json: @post.errors, status: :unprocessable_entity } 44 end 45 end 46 end 47 48 49 def destroy 50 @post.destroy 51 respond_to do |format| 52 format.html { redirect_to posts_url, notice: 'Post was successfully destroyed.' } 53 format.json { head :no_content } 54 end 55 end 56 57 private 58 59 def set_post 60 @post = Post.find(params[:id]) 61 end 62 63 #def post_params 64 #params.require(:post).permit(:title) 65 #end 66 def post_params 67 params.require(:post).permit(:title, :content) 68 end 69 70end 71
試したこと(仮説)
ActiveModel::UnknownAttributeErrorについて調べました。
下記の文献を参考に試してみましたが変化はありませんでした。
補足
初心者で言葉足らずで申し訳ありませんが、ご教示いただけたらと思います。
宜しくお願い致します。
ポストモデル(post.rb)を質問に追加してください。
返信ありがとうございます!
はい!編集します!
no1knows様
post.rb
class Post < ApplicationRecord
class Post < ApplicationRecord
has_rich_text :content
end
end
となっていまして不要なものを削除するとCrate Post が機能しました!
viewの確認なのですが下記で宜しいでしょうか??
https://gyazo.com/85efd2d37f8abd6545e908f210c1d85b
ご提示いただいたものではAction Textがきちんと反映されているか判別できません。
入力画面で画像を入れたり文字を太くしたりしてから保存したときにそのまま保存されていればよいかと思います。
no1knows様
返信ありがとうございます!
入力画面にて画像の挿入、文字の変更を行い無事保存されているのが確認出来ました!
ありがとうございます!
あとは細かいレイアウトなどを実装していこうと思います!
便利な機能をご教示頂きましてありがとうございます!これからも精進していきます!
おめでとうございます!
回答1件
あなたの回答
tips
プレビュー