0

Ruby 1.8.7 と Rails 3.2.13 を使用しています。formtastic を使用してフォームを作成したいと考えています。「NilClass:Class の undefined method `model_name'」というエラーが表示され続けます。以下は、私のコントローラー、ルート、およびインデックスです。

App_pages_controller.rb:

class AppPagesController < ApplicationController
  def index
  end

  def new
    @person = Person.new
  end

  def create
    @person = Person.new(params[:person])
    if @person.save
        redirect_to new_student_path
    end
  end

  def registration
  end

  def unknown
  end
end

ルート.rb:

WyspApp::Application.routes.draw do
  resources :persons

  match '/registration', :to => 'App_pages#registration'

  match '/unknown', :to => 'App_pages#unknown'

  match '/index', :to => 'App_pages#index'

   root :to => 'App_pages#index'

index.html.erb

<%= semantic_form_for @person do |form| %>
<%= form.inputs do %>
<%= form.input :name %>
<%= form.input :born_on, :start_year => 1997 %>
<%= form.input :description, :as => :text %>
<%= form.input :female, :as => :radio, :label => "Gender", :collection => [["Male", false], ["Female", true]] %>
<% end %>
<%= form.actions do %>
<%= form.action :submit, :as => :button %>
<% end %>
<% end %>

どんな助けでも大歓迎です!前もって感謝します!

4

1 に答える 1

1

私は実際にモデルを作成するのを忘れていました...エラーが発生した他の人のために、参照しているオブジェクトのモデルを作成してください...

于 2013-10-14T16:56:11.140 に答える