2016-03-28 63 views
0

我用Rails 4要定義動態屬性,是這樣的:attr_accessible爲Rails 4動態屬性

(0..6).each do |i| 
    attr_accessible "attr-#{i}" 

現在它failling說

NoMethodError: undefined method `attr_accessible' for #<Class:0x007fdeb8911380> 

我相信這是因爲attr_accessible在Rails 4中不再使用,那麼我如何實現這一點? 謝謝。

回答

0

試試這個:

dynamic_attributes = {test: 1, test2: 2, test3: 3} 
#object could be self depending on the context 
object.instance_eval(class << self; self; end) }.class_eval do 
    dynamic_attributes.each do |attr, value| 
    define_method(attr){ value } 
    define_method(attr){|new_value| dynamic_attributes[attr] = new_value } 
    end 
end 
+0

正是一直在尋找!謝謝你的時間。 – WhomWhomWhom