class Task < ActiveRecord::Base
has_many :notes, :as => :notable, :dependent => :destroy
has_many :work_times, :dependent => :destroy
end
class WorkTime < ActiveRecord::Base
belongs_to :task
end
class NotesController < ApplicationController
end
end
####
請幫忙嗎?如何將價值從控制器傳遞給模型?
它看起來像你的「像」是正確的答案。它有什麼問題? – 2011-04-20 17:22:50
這就是我爲#獲取未定義的方法'work_time'。我得到的日期,但最後一行代碼* work_time.start_time ==時間是錯誤。 –
user659068
2011-04-20 17:28:02