0

使用带有设计和回形针的 Rails4 我的图像没有保存在我的数据库中。我越来越

不允许的参数:头像

attr_accessible :avatar在我的admin/users_controller.rb

4

1 回答 1

1

您必须使用允许的参数:

# adjust the fields you need: :avatar, :first_name, :last_name,...
User.create(params.permit(:avatar))

https://github.com/rails/strong_parameters

于 2013-09-18T18:03:04.923 回答