Я изо всех сил пытаюсь избавиться от вложенных атрибутов. Отрабатывая 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