나는이처럼 내 레일 응용 프로그램에 ActiveModel 클래스를 설정 한 :ActiveModel에 "update_attributes"메소드가 포함 된 모듈이 있습니까?
class MyThingy
extend ActiveModel::Naming
extend ActiveModel::Translation
include ActiveModel::Validations
include ActiveModel::Conversion
attr_accessor :username, :favorite_color, :stuff
def initialize(params)
#Set up stuff
end
end
난 정말이 할 수 있기를 원하는
: 난 그냥 내 자신에 update_attributes를 작성할 수
thingy = MyThingy.new(params)
thingy.update_attributes(:favorite_color => :red, :stuff => 'other stuff')
을, 하지만 어딘가에 존재한다는 느낌이 들었습니다. 그거야?
이 거기에가 새로운 레일 버전에 대한 어떤 계시인가? – schmijos