rails ruby 中的 NoMethodError simple_form_for

NoMethodError simple_form_for in ruby on rails

<%= simple_form_for @post do |f| %>
  <%= f.label :title %>
  <%=f.text_field :title%>
  <%= f.label :phone %>
  <%=f.text_field :phone%>
  <%= f.label :description %>
  <%=f.text_field :description%>
  <%= f.submit%>
<% end %>

enter image description here 我该如何解决这个问题

确保您已完成以下操作:

  • 已将 simple_form 添加到您的 Gemfile
  • 运行 bundle install
  • 重新启动了您的 rails 服务器

然后再次尝试此操作。