解决bug: ActiveModel::ForbiddenAttributesError
bug:
提交表单时,点击确定后出现error:ActiveModel::ForbiddenAttributesError (ActiveModel::ForbiddenAttributesError)
解决方案:
在rails项目中的config/application.rb中 添加:
config.action_controller.permit_all_parameters = true
问题解决