當我向我的關係模型添加attr_accessible時發生這種情況。請使用新推薦的參數保護模式(strong_parameters)或將`protected_attributes`添加到您的gem文件中
class Relationship < ActiveRecord::Base
attr_accessible :followed_id
end
如果沒有使用Devise或者protected_attributes gem,那麼這是怎麼回事呢?我知道,在控制器中,你可以調用一個私有方法來請求和允許字段。這也是你應該在模型中做的事嗎?這裏的會議是什麼?
謝謝!
+1爲了很好的聯繫 – Aarmora