Rails: модель принимает вложенные атрибуты, но контроллер, кажется, не заботится - PullRequest
1 голос
/ 02 апреля 2012

Я изо всех сил пытаюсь избавиться от вложенных атрибутов. Отрабатывая Railscast 196 , я попытался настроить свое собственное приложение, которое выполняет базовое вложение. Пользователи могут создавать охоты мусорщика. Каждая охота состоит из серии задач (которые могут принадлежать любой охоте, а не только одной). Я получил небольшую помощь здесь и попытался узнать из сообщения с похожей проблемой , но я все еще застрял. Я взломал несколько часов, и я ударил кирпичную стену.

class HuntsController < ApplicationController

  def index
     @title = "All Hunts"
     @hunts = Hunt.paginate(:page => params[:page])
  end

  def show
    @hunt = Hunt.find(params[:id])
    @title = @hunt.name 
    @tasks = @hunst.tasks.paginate(:page => params[:page])
  end

  def new
    if current_user?(nil) then    
      redirect_to signin_path
    else
      @hunt = Hunt.new
      @title = "New Hunt"
      3.times do
        #hunt =  @hunt.tasks.build 
        #hunt = @hunt.hunt_tasks.build  
        hunt = @hunt.hunt_tasks.build.build_task
      end
    end
  end

  def create
    @hunt = Hunt.new(params[:hunt])
    if @hunt.save
      flash[:success] = "Hunt created!"
      redirect_to hunts_path
    else
      @title = "New Hunt"
      render 'new'     
    end
  end
....
 end

С этим кодом, когда я пытаюсь создать новую охоту, мне говорят, что нет метода "build_task" (он не определен). Поэтому, когда я удаляю эту строку и использую второй бит кода, который закомментирован выше, я получаю ошибку ниже.

    NoMethodError in Hunts#new

    Showing /Users/bendowney/Sites/MyChi/app/views/shared/_error_messages.html.erb where line #1 raised:

    You have a nil object when you didn't expect it!
    You might have expected an instance of ActiveRecord::Base.
    The error occurred while evaluating nil.errors
    Extracted source (around line #1):

    1: <% if object.errors.any? %>
    2:   <div id="error_explanation">
    3:     <h2><%= pluralize(object.errors.count, "error") %> 
    4:         prohibited this <%= object.class.to_s.underscore.humanize.downcase %> 

    Trace of template inclusion: app/views/tasks/_fields.html.erb, app/views/hunts/_fields.html.erb, app/views/hunts/new.html.erb

И когда я использую первый бит кода, который закомментирован в поисковом контроллере, то я получаю сообщение об ошибке, сообщающее, что мой «новый» метод имеет неинициализированную константу:

    NameError in HuntsController#new
uninitialized constant Hunt::Tasks

Я нахожусь в конце моего остроумия. Любые предложения о том, что именно я делаю не так? Или стратегия Вот мои модели:

    class Hunt < ActiveRecord::Base
      has_many :hunt_tasks
      has_many :tasks, :through => :hunt_tasks #, :foreign_key => :hunt_id

      attr_accessible :name
      validates :name,  :presence => true,
                        :length   => { :maximum => 50 } ,
                        :uniqueness => { :case_sensitive => false }
    end

    class Task < ActiveRecord::Base

      has_many :hunt_tasks
      has_many :hunts, :through => :hunt_tasks#, :foreign_key => :hunt_id

      attr_accessible :name 
      validates :name,  :presence => true,
                        :length   => { :maximum => 50 } ,
                        :uniqueness => { :case_sensitive => false }

    end

    class HuntTask < ActiveRecord::Base
      belongs_to :hunts # the id for the association is in this table
      belongs_to :tasks
    end

Ответы [ 3 ]

1 голос
/ 02 апреля 2012

Когда вы создаете связь между двумя вашими моделями, вы добавляете к ним функциональность в зависимости от того, как вы определяете свои отношения. Каждый тип добавляет свои функции в вашу модель.

Я очень рекомендую прочитать это руководство -> http://guides.rubyonrails.org/association_basics.html

Здесь вы можете увидеть, какие функции добавляются каждым различным типом ассоциации. http://guides.rubyonrails.org/association_basics.html#detailed-association-reference

Если я сделаю небольшую программу, например ...

class HuntsController < ApplicationController
  # GET /hunts
  # GET /hunts.json
  def index
    @hunts = Hunt.all

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

  # GET /hunts/1
  # GET /hunts/1.json
  def show
    @hunt = Hunt.find(params[:id])

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

  # GET /hunts/new
  # GET /hunts/new.json
  def new
    @hunt = Hunt.new
    3.times do |i|
        t = @hunt.hunt_tasks.build
        t.name = "task-#{i}"
    end

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

  # GET /hunts/1/edit
  def edit
    @hunt = Hunt.find(params[:id])
  end

  # POST /hunts
  # POST /hunts.json
  def create
    @hunt = Hunt.new(params[:hunt])

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

  # PUT /hunts/1
  # PUT /hunts/1.json
  def update
    @hunt = Hunt.find(params[:id])

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

  # DELETE /hunts/1
  # DELETE /hunts/1.json
  def destroy
    @hunt = Hunt.find(params[:id])
    @hunt.destroy

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

и это модельное отношение

class Hunt < ActiveRecord::Base
    has_many :hunt_tasks
end

class HuntTask < ActiveRecord::Base
  belongs_to :hunt
end

и добавить этот фрагмент где-нибудь в views / hunts / _form.html

<% @hunt.hunt_tasks.each do |t| %>
    <li><%= t.name %></li>
<% end %>

Я получаю регулярный вывод, видя, что 3 задачи были созданы.

1 голос
/ 02 апреля 2012

ты пробовал hunttask = @hunt.build_hunt_task в новом действии HuntsController?

http://guides.rubyonrails.org/association_basics.html#detailed-association-reference

0 голосов
/ 02 апреля 2012

Непосредственная ошибка, которую вы видите, находится в app / views / shared / _error_messages.html.erb.объект не определен, вам, вероятно, нужно найти, где вызывается эта частичная часть.Найти:

render :partial=>"/shared/error"

замените его на

render :partial=>"/shared/error", :locals=>{:object=>@hunt}

Если вы найдете его в приложении / views / hunts где-то, если вы найдете в app / views / tasks, замените @hunt на@ task

Это, по крайней мере, покажет вам, какова настоящая ошибка.

...