我看过这个:http://api.rubyonrails.org/classes/ActiveModel/Dirty.html
我希望在使用update_attributes之后使用它来检查模型上是否更改了布尔标志.我尝试按照附带链接中的描述进行最小化实施.我在ActiveRecord类中添加了以下内容:
include ActiveModel::Dirtydefine_attribute_methods [:admin]
我尝试添加我想要跟踪的三个属性.我从一个属性开始,看看我是否能让它工作.我运行rspec测试时收到以下错误.一旦我删除了论点,我就没有错误.
Exception encountered: #<ArgumentError: wrong number of arguments (1 for 0)>
删除参数后,我决定使用admin而不是name在我的模型中包含类似的方法.其他Rspec测试打破了save方法.但是我觉得问题在于我如何实现ActiveModel Dirty.
我已阅读其他Stack Overflow帖子,其中评论者表示这已包含在3.2.8中,因此我从3.2.6升级到3.2.8.我不明白这是什么意思所以在得到错误后我决定离开include ActiveModel :: Dirty语句并尝试使用admin_changed?当然它没有用.
除了我在这里包含的链接之外,我还没有找到任何关于如何为此设置的内容.我发现的所有其他研究都假定初始设置是正确的,并且更新到当前稳定版本的Rails会解决他们的问题.
任何帮助将不胜感激如何实现这一点.执行链接中所述的最小实现是行不通的.也许还有一些我想念的东西.
解决方法 问题似乎是ActiveRecord重新定义了define_attribute_methods方法以接受0个参数(因为ActiveRecord自动为数据库表中的每一列创建属性方法): https://github.com/rails/rails/blob/master/activerecord/lib/active_record/attribute_methods.rb#L23这将覆盖ActiveModel:https://github.com/rails/rails/blob/master/activemodel/lib/active_model/attribute_methods.rb#L240提供的define_attribute_methods方法
解:
我想出了一个对我有用的解决方案……
将此文件另存为lib / active_record / nonpersisted_attribute_methods.rb:https://gist.github.com/4600209
然后你可以做这样的事情:
require 'active_record/nonpersisted_attribute_methods'class Foo < ActiveRecord::Base include ActiveRecord::NonPersistedAttributeMethods define_nonpersisted_attribute_methods [:bar]endfoo = Foo.newfoo.bar = 3foo.bar_changed? # => truefoo.bar_was # => nilfoo.bar_change # => [nil,3]foo.changes[:bar] # => [nil,3]
但是,当我们这样做时,看起来我们会收到警告:
DEPRECATION WARNING: You're trying to create an attribute `bar'. Writing arbitrary attributes on a model is deprecated. Please just use `attr_writer` etc.
因此我不知道这种方法在Rails 4中是否会破解或更难…
也可以看看:
> Track dirty for not-persisted attribute in an ActiveRecord object in rails
> https://github.com/adzap/validates_timeliness/issues/73
以上是内存溢出为你收集整理的ruby-on-rails – 实现ActiveModel Dirty Rails的问题3.2.8全部内容,希望文章能够帮你解决ruby-on-rails – 实现ActiveModel Dirty Rails的问题3.2.8所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)