Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got problem with NoMethodError in Rails.

Error screen

MODELS: issue:

class Issue < ActiveRecord::Base
   attr_accessible :description, :estimate, :label, :status, :title, :project_id
   belongs_to :project
   validates :title, :presence => true
   validates :estimate, :numericality => {:greater_than_or_equal_to => 0.1}
 end

project:

 class Project < ActiveRecord::Base
   attr_accessible :description, :title
   has_many :issues, :dependent => :destroy
   accepts_nested_attributes_for :issues, :allow_destroy => :true
 end

issue controller:

 class IssuesController < ApplicationController
        # GET /issues
        # GET /issues.json
        def index
          @issues = Issue.all

          respond_to do |format|
            format.html # index.html.erb
            format.json { render :json => @issues }
          end
        end

        # GET /issues/1
        # GET /issues/1.json
        def show
          @issue = Issue.find(params[:id])

          respond_to do |format|
            format.html # show.html.erb
            format.json { render :json => @issue }
          end
        end

        # GET /issues/new
        # GET /issues/new.json
        def new
          @issue = Issue.new
          #@issue = @project.issues.new(params[:issue])

          respond_to do |format|
            format.html # new.html.erb
            format.json { render :json => @issue }
          end
        end

        # GET /issues/1/edit
        def edit
          @issue = Issue.find(params[:id])
        end

        # POST /issues
        # POST /issues.json
        def create
          @project = Project.find(params[:project_id])
          @issue = @project.issues.create(params[:issue])
          redirect_to project_path(@project)
          #@issue = @project.issues.new(params[:issue])
          #@issue = Issue.new(params[:issue])

          # respond_to do |format|
          #   if @issue.save
          #     format.html { redirect_to @issue, :notice => 'Issue was successfully created.' }
          #     format.json { render :json => @issue, :status => :created, :location => @issue }
          #   else
          #     format.html { render :action => "new" }
          #     format.json { render :json => @issue.errors, :status => :unprocessable_entity }
          #   end
          # end
        end

        # PUT /issues/1
        # PUT /issues/1.json
        def update
          @issue = Issue.find(params[:id])

          respond_to do |format|
            if @issue.update_attributes(params[:issue])
              format.html { redirect_to @issue, :notice => 'Issue was successfully updated.' }
              format.json { head :no_content }
            else
              format.html { render :action => "edit" }
              format.json { render :json => @issue.errors, :status => :unprocessable_entity }
            end
          end
        end

        # DELETE /issues/1
        # DELETE /issues/1.json
        def destroy
          @project = Project.find(params[:project_id])
          @issue = @project.issues.find(params[:id])
          #@issue = Issue.find(params[:id])
          @issue.destroy
          redirect_to project_path(@project)

          # respond_to do |format|
          #   format.html { redirect_to issues_url }
          #   format.json { head :no_content }
          # end
        end
      end

project controller:

 class ProjectsController < ApplicationController
    # GET /projects
    # GET /projects.json
    def index
      @projects = Project.all

      respond_to do |format|
        format.html # index.html.erb
        format.json { render :json => @projects }
      end
    end

    # GET /projects/1
    # GET /projects/1.json
    def show
      @project = Project.find(params[:id])

      respond_to do |format|
        format.html # show.html.erb
        format.json { render :json => @project }
      end
    end

    # GET /projects/new
    # GET /projects/new.json
    def new
      @project = Project.new

      respond_to do |format|
        format.html # new.html.erb
        format.json { render :json => @project }
      end
    end

    # GET /projects/1/edit
    def edit
      @project = Project.find(params[:id])
    end

    # POST /projects
    # POST /projects.json
    def create
      @project = Project.new(params[:project])

      respond_to do |format|
        if @project.save
          format.html { redirect_to @project, :notice => 'Project was successfully created.' }
          format.json { render :json => @project, :status => :created, :location => @project }
        else
          format.html { render :action => "new" }
          format.json { render :json => @project.errors, :status => :unprocessable_entity }
        end
      end
    end

    # PUT /projects/1
    # PUT /projects/1.json
    def update
      @project = Project.find(params[:id])

      respond_to do |format|
        if @project.update_attributes(params[:project])
          format.html { redirect_to @project, :notice => 'Project was successfully updated.' }
          format.json { head :no_content }
        else
          format.html { render :action => "edit" }
          format.json { render :json => @project.errors, :status => :unprocessable_entity }
        end
      end
    end

    # DELETE /projects/1
    # DELETE /projects/1.json
    def destroy
      @project = Project.find(params[:id])
      @project.destroy

      respond_to do |format|
        format.html { redirect_to projects_url }
        format.json { head :no_content }
      end
    end
  end

And it writes undefined method `model_name' for NilClass:Class when I want to show some project. Please, can you help me? Thanks

share|improve this question

closed as too localized by casperOne Nov 2 '12 at 18:57

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

I found this tutorial

http://blog.dominicsayers.com/2011/08/24/howto-create-a-simple-parent-child-form-in-rails-3-1/

and made it like this:

<%= form_for([@mom, @mom.kids.build]) do |f| %>
share|improve this answer

Hey you are calling Project#show action, at that time, only /views/project/show.html.erb would be rendered.

Hence to render show.html.erb you need to have both @projects and @issue.
Now show.html.erb can use instance variables declared in show action. So @issue need to be defined in Projects#show action. Write this line in Post#show action.
@issue = Issue.find(params[:id])

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.