微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ruby-on-rails – 删除嵌套属性时未允许的属性_destroy

关注railscast#196但使用Rails 4 – 我在尝试从问题父模型中删除答案时遇到了问题.

未允许的参数:_destroy

_answer_fields.html.erb

<fieldset>                                                                                                                                                                                                  
    <%= f.text_field :response %>                                                                                                                                                                       
    <%= f.hidden_field :_destroy %>                                                                                                                                                                                                                                                                                                                                                                                 
    <%= link_to "remove","#",class: "remove_fields" %>                                                                                                                                               
</fieldset>

question.rb

accepts_nested_attributes_for :questions,:allow_destroy => true

surveys_controller.rb

def survey_params                                                                                                                                                                                       
  params.require(:survey).permit(:name,:questions_attributes => [:id,:content,:answers_attributes => [:id,:response]])                                                                              
end

我正在删除表单上的字段点击罚款,但记录尚未删除.

谢谢

编辑:JS设置隐藏变量

jQuery ->                                                                                                                                                                                                   
        $(document).on 'click',".remove_fields",(event) ->                                                                                                                                              
                $(this).prev('input[type=hidden]').val('1')                                                                                                                                                 
                $(this).closest('fieldset').hide()                                                                                                                                                          
                event.preventDefault()

解决方法

@Hitham S. AlQadheeb可能是对的 – 检查你的模型是否正确……

survey.rb

class Survey < ActiveRecord::Base
  has_many :questions,:dependent => :destroy
  accepts_nested_attributes_for :questions
end

和问题.rb

class Question < ActiveRecord::Base
  belongs_to :survey
  has_many :answers,:dependent => :destroy
  accepts_nested_attributes_for :answers,:reject_if => lambda { |a| a[:content].blank? },:allow_destroy => true
end

不允许的参数:_destroy错误实际上应该指的是你的控制器的强参数的实现:survey_params.你需要告诉rails你的表单将传递:_destroy字段.试试这个:

def survey_params                                                                                                                                                                                       
  params.require(:survey).permit(:name,:_destroy,:response,:_destroy]])                                                                              
end
---------------------------------------------------------------------------------^
-------------------------------------------------------------------------------------------------------------------------------------^

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐