ruby-on-rails – ActiveModel是否有一个包含“update_attributes”方法的模块?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – ActiveModel是否有一个包含“update_attributes”方法的模块?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的Rails应用程序中设置了一个ActiveModel类,如下所示:
  1. class MyThingy
  2. extend ActiveModel::Naming
  3. extend ActiveModel::Translation
  4. include ActiveModel::Validations
  5. include ActiveModel::Conversion
  6.  
  7. attr_accessor :username,:favorite_color,:stuff
  8.  
  9. def initialize(params)
  10. #Set up stuff
  11. end
  12.  
  13. end

我真的希望能够做到这一点:

  1. thingy = MyThingy.new(params)
  2. thingy.update_attributes(:favorite_color => :red,:stuff => 'other stuff')

我可以自己编写update_attributes,但我觉得它存在于某个地方.可以?

解决方法

不,但这种情况有共同的模式:
  1. class Customer
  2. include ActiveModel::MassAssignmentSecurity
  3.  
  4. attr_accessor :name,:credit_rating
  5.  
  6. attr_accessible :name
  7. attr_accessible :name,:credit_rating,:as => :admin
  8.  
  9. def assign_attributes(values,options = {})
  10. sanitize_for_mass_assignment(values,options[:as]).each do |k,v|
  11. send("#{k}=",v)
  12. end
  13. end
  14. end

它是from here.请参阅链接获取示例.

如果您经常重复此方法,则可以将此方法提取到单独的模块中,并根据需要包含它.

猜你在找的Ruby相关文章