ruby-on-rails – Strong_parameters无效

ruby-on-rails – Strong_parameters无效,第1张

概述使用 Ruby 1.9.3,Rails 3.2.13,Strong_parameters 0.2.1: 我已经按照教程和railscast中的每个指示进行了 *** 作,但是我无法使用strong_parameters.它应该是非常简单的东西,但我看不出错误在哪里. 配置/初始化/ strong_parameters.rb: ActiveRecord::Base.send(:include, Active 使用 Ruby 1.9.3,Rails 3.2.13,Strong_parameters 0.2.1:

我已经按照教程和railscast中的每个指示进行了 *** 作,但是我无法使用strong_parameters.它应该是非常简单的东西,但我看不出错误在哪里.

配置/初始化/ strong_parameters.rb:

ActiveRecord::Base.send(:include,ActiveModel::ForbIDdenAttributesProtection)

配置/ application.rb中

config.active_record.whiteList_attributes = false

应用程序/模型/ product.rb

class Product < ActiveRecord::Baseend

应用程序/控制器/ products_controller.rb:

class ExpedIEntesController < ApplicationController  ...  def create    @product = Product.new(params[:product])    if @product.save      redirect_to @product    else      render :new    end  endend

这会像预期的那样引发ForbIDden Attributes异常.但是当我搬到:

...  def create    @product = Product.new(product_params)    # and same flow than before  end  private  def product_params    params.require(:product).permit(:name)  end

然后,如果我转到表单并输入“名称:产品1”和“颜色:红色”,则不会引发异常;新产品保存在数据库中,没有颜色,但名称正确.

我究竟做错了什么?

解决方法 解决了.

默认情况下,使用不允许的属性会以静默方式失败,并且会过滤掉所提交的属性并将其忽略.在开发和测试环境中,也会记录错误.

要更改默认行为,例如在开发环境中:
配置/环境/ development.rb:

# Raises an error on unpermitted attributes assignment  config.action_controller.action_on_unpermitted_parameters = :raise  # default is :log

说实话,在github存储库中非常清楚地解释了.

总结

以上是内存溢出为你收集整理的ruby-on-rails – Strong_parameters无效全部内容,希望文章能够帮你解决ruby-on-rails – Strong_parameters无效所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1290554.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-09
下一篇 2022-06-09

发表评论

登录后才能评论

评论列表(0条)

保存