How to create objects using rails polymorphic association

1.4k Views Asked by At

I want to create objects using Polymorphic association but it returns me error like:

NoMethodError (undefined method `new' for nil:NilClass):

Here are params:

  Parameters: {"utf8"=>"✓", "authenticity_token"=>"TAQdqSTXAFCrq6yZBUnjVXe7IsPqmxuLh/qM/2QvKaVvsfP
/Sy6VNF7H38IzOg8aMj39t6HR+aZLLtyj8uMzyw==", "search"=>"Newport-Mesa Unified 
School District", "id"=>"32", "type"=>"PrivateSchool", "commit"=>"Submit"}

Here are models:

class PrivateSchool < ActiveRecord::Base
  has_many :popular_schools, as: :resource, :dependent => :destroy
end

class PopularSchool < ActiveRecord::Base
  belongs_to :resource, polymorphic: true
end

class School < ActiveRecord::Base
  has_many :popular_schools, as: :resource, :dependent => :destroy
end

Controller code:

def index
    @popular_school = PopularSchool.new
    @popular_schools = PopularSchool.all
  end

  def create
    @popular_school.new.save
    respond_to do |format|
      format.html { redirect_to root_path }
      format.json { head :no_content }
      format.js
    end
  end
1

There are 1 best solutions below

8
On

You have not defined @popular_school variable anywhere. That's why you are getting NoMethodError (undefined method new for nil:NilClass): error.

Try PopularSchool.create(your_params)