#<#:0x007ff5edcd5330> のメソッド `androids_path' が未定義です。エラーはnew.htmlの1行目にあると言っています。
モデルの名前は Android で、android.rb にあります。これを修正する方法について何かアドバイスはありますか?
androidapps_controller.rb:
def new
@android = Android.new
end
new.html には次のものがあります。
<%= form_for(@android, validate:true) do |f| %>
<% @android.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
<p>
<%= f.label :title %><br />
<%= f.text_field :title %>
</p>
<%= f.submit %>
<% end %>
ルート.rb
Grabapp::Application.routes.draw do
root :to => 'iosapps#index'
get "static_pages/home"
get "static_pages/add"
get "static_pages/about"
devise_for :users
resources :iosapps
resources :androidapps