我正在制作一个rails 4应用程序。每个incident
都属于一个user
。每次事故has many events
。我希望可以创建一个带有current_user.incidents.new
的事件,并向它传递一个存在于事件模型中的属性message
。在创建时,我希望创建一个新的事件,其中包含所说的message
。
这是我的事故模型。
class Incident < ActiveRecord::Base
# The 'incident' model.
# Incidents are created by Users (belongs_to :user)
# Incidents may be public or private.
# Incidents have many events (identified, fixing, etc.)
belongs_to :user
has_many :events
validates :name, presence: true, length: {maximum: 256}
validates_presence_of :component
validates_presence_of :public
validates_presence_of :user_id
attr_accessor :message
validates_associated :message, presence: true
def message
Event.find_by_incident_id(self.id).message
end
def message=(value)
self.events.new(message: value, status: self.status)
end
private
def incident_params
params.require(:incident).permit(:name, :status, :user_id, :message)
end
end
但是,当我运行
@i = Incident.new(message: 'something')
时,我得到ActiveRecord::UnknownAttributeError: unknown attribute 'message' for Incident.
请帮我弄清楚。
最佳答案
问题是,您将值传递给ActiveRecord::new
的默认Incident
方法,它不关心getter、setter和accessor,而是goes straight to the columns。
有些人重写或修改build method可以实现您所需的智能逻辑,而不影响baseinitialize
方法。