投稿サイトの編集機能のボタンを押したらこのようなエラーが出ました。
発生している問題、エラーメッセージ
NoMethodError
1Showing C:/Users/kuruchan/non/app/views/posts/edit.html.erb where line #1 raised: 2 3undefined method `post_path' for #<ActionView::Base:0x0000000000f5c8> 4Did you mean? posts_path 5 font_path 6Extracted source (around line #1): 71 82 93 104 115 126 13 14<%= form_for @tweet do |f| %> 15 <%= f.label :country %> 16 <%= f.text_field :country, :size => 140 %> 17 <%= f.submit "編集する" %> 18 19 <%= f.label :detail %> 20 21Rails.root: C:/Users/kuruchan/non 22 23Application Trace | Framework Trace | Full Trace 24app/views/posts/edit.html.erb:1 25Request 26Parameters: 27 28{"id"=>"27"} 29Toggle session dump 30Toggle env dump 31Response 32Headers: 33 34Noneここに言語を入力 35
ネットでいろいろ解決策を探しましたが、ダメでした。
当該ソースコード
config/routes.rb
Rails.application.routes.draw do get 'posts' => 'posts#index' get 'posts/new' => 'posts#new' post 'posts' => 'posts#create' get 'posts/:id' => 'posts#show',as: 'tweet' patch 'posts/:id' => 'posts#update' delete'posts/:id' => 'posts#destroy' get 'posts/:id/edit' => 'posts#edit', as:'edit_tweet' end
アクション - postss#edit
コントローラのposts_controller.rb
ここに言語を入力
def edit
@tweet = Post.find(params[:id])
end
ビューのedit.html.erb ```ここに言語を入力 <%= form_for @tweet do |f| %> <%= f.label :country %> <%= f.text_field :country, :size => 140 %> <%= f.submit "編集" %> <%= f.label :detail %> <%= f.text_field :detail, :size => 140 %> <%= f.submit "編集" %> <% end %>
アクションの - posts#update
posts_controller.rb
def update tweet = Post.find(params[:id]) if tweet.update(tweet_params) redirect_to :action => "show", :id => tweet.id else redirect_to :action => "new" end end
ndex.html.erb
<% @tweets.each do |t| %> <div class="tweet"> <%= t.country %> <%= t.created_at %> <%= t.detail %> <%= t.created_at %> <%= link_to "編集", edit_tweet_path(t.id) %> </div> <% end %>
show.html.erb
<%= link_to "編集する", edit_tweet_path(@tweet.id) %>
補足情報
Windows11
言語 Ruby on rails
windows直に環境構築
追記
先ほどは内容を誤って送信してしまいました