前提・実現したいこと
rails6で下記のリンクを参考にActiontextをインストールしました。
リンク内容
NoMethodError in Posts#new を解決したい。
発生している問題・エラーメッセージ
http://localhost:3000/posts/_form NoMethodError in Posts#new Showing /Users/name/Dr_nishi/app/views/posts/_form.html.erb where line #25 raised: undefined method `rich_text_field' for #<ActionView::Helpers::FormBuilder:0x00007ff4612f4fd8> Did you mean? rich_text_area Extracted source (around line #25): 23 <div class="field"> 24 <%= form.label :content %> 25 <%= form.rich_text_field :content %> 26 </div> 27 <% end %>
該当のソースコード
posts/_form.html.erb <%= form_with(model: post, local: true) do |form| %> <% if post.errors.any? %> <div id="error_explanation"> <h2><%= pluralize(post.errors.count, "error") %> prohibited this post from being saved:</h2> <ul> <% post.errors.full_messages.each do |message| %> <li><%= message %></li> <% end %> </ul> </div> <% end %> <div class="field"> <%= form.label :title %> <%= form.text_field :title %> </div> <div class="actions"> <%= form.submit %> </div> <div class="field"> <%= form.label :content %> <%= form.rich_text_field :content %> </div> <% end %>
posts/show.html.erb <p id="notice"><%= notice %></p> <p> <strong>Title:</strong> <%= @post.title %> </p> <%= link_to 'Edit', edit_post_path(@post) %> | <%= link_to 'Back', posts_path %> <%= @post.content %>
post/new.html.erb <h1>New Post</h1> <%= render 'form', post: @post %> <%= link_to 'Back', posts_path %>
posts/index.html.erb <p id="notice"><%= notice %></p> <h1>Posts</h1> <table> <thead> <tr> <th>Title</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @posts.each do |post| %> <tr> <td><%= post.title %></td> <td><%= link_to 'Show', post %></td> <td><%= link_to 'Edit', edit_post_path(post) %></td> <td><%= link_to 'Destroy', post, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Post', new_post_path %>
config/routes.rb Rails.application.routes.draw do resources :posts end
post.controlller.rb class PostsController < ApplicationController before_action :set_post, only: [:show, :edit, :update, :destroy] def index @posts = Post.all end def show end def new @post = Post.new end def edit end def create @post = Post.new(post_params) respond_to do |format| if @post.save format.html { redirect_to @post, notice: 'Post was successfully created.' } format.json { render :show, status: :created, location: @post } else format.html { render :new } format.json { render json: @post.errors, status: :unprocessable_entity } end end end def update respond_to do |format| if @post.update(post_params) format.html { redirect_to @post, notice: 'Post was successfully updated.' } format.json { render :show, status: :ok, location: @post } else format.html { render :edit } format.json { render json: @post.errors, status: :unprocessable_entity } end end end def destroy @post.destroy respond_to do |format| format.html { redirect_to posts_url, notice: 'Post was successfully destroyed.' } format.json { head :no_content } end end private def set_post @post = Post.find(params[:id]) end #def post_params #params.require(:post).permit(:title) #end def post_params params.require(:post).permit(:title, :content) end end
試したこと(仮説)
NoMethodError in Posts#new で検索しましたが初心者の私には
参考になるような文献を見つけることが出来ませんでしたので今回質問させていただきました。
補足
言葉足らずで申し訳ありませんがご教示頂けたらと思います。
宜しくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/10 03:08
2020/11/10 07:47