WARNING: Can't mass-assign protected attributes

前端 未结 2 1008
醉梦人生
醉梦人生 2021-02-06 00:42

I get this error \"WARNING: Can\'t mass-assign protected attributes: races_attributes\" , when following this http://railscasts.com/episodes/196-nested-model-form-part-1 on rail

2条回答
  •  一整个雨季
    2021-02-06 00:55

    attr_accessible specifies that you can not mass-assign attributes, using save method, for example. So, if you change an attribute that is not defined with attr_accessible, you will get a warning because it will not actually be saved in the database.

提交回复
热议问题