ruby-on-rails – Rails attr_readonly不起作用

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails attr_readonly不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
根据attr_readonly的 this questiondocumentation,应该可以:
class MyModel < ActiveRecord::Base
  attr_accessible :foo
  attr_readonly :bar
end

m = MyModel.create(foo: '123',bar: 'bar') # Should work
m.update_attributes(bar: 'baz')            # Should not work

然而,第一个失败,说我不能大规模分配酒吧.我在做什么?

解决方法

documentation

attr_accessible takes a list of attributes that will be accessible.
All other attributes will be protected.

因此attr_accessible使bar属性不受大规模分配的影响.

原文链接:https://www.f2er.com/ruby/274185.html

猜你在找的Ruby相关文章