何か:_form部分未定義のメソッド `staticpages_path」エラー私の部分で間違っ
<% form_for(@static) do |f| %>
<%= f.error_messages %>
<div class="field">
<%= f.label :name %><br />
<%= f.text_field :name %>
</div>
<div class="field">
<%= f.label :content %><br />
<%= f.text_area :content %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
編集方法:
def edit
@static=Staticpage.find(params[:id])
end
そして私はroutes.rbを
resources :static
にこのソリューションを使用します
何が間違っていますか?ターミナルで