ruby-on-rails – 导轨中未提供的参数4

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 导轨中未提供的参数4前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我阅读了关于collection_check_Boxes,但我不明白如何设置检查的值.
我有以下型号:
class Objective < ActiveRecord::Base

  has_many :indicators
  has_many :objective_children,class_name: "Objective",foreign_key: "parent_id"

  def objective_ids
    objective_children.collect{|o| o.id}
  end

  def objective_ids= objectives_ids
    objectives_ids.each do |id|
      objective_children << Objective.find(id)
    end
  end
end

编辑视图:

<%= form_for(@objective) do |f| %>
  <%= f.collection_check_Boxes :objective_ids,Objective.all,:id,:name %>
  <%= f.submit %>
<% end %>

html复选框确定,但我不知道如何将值设置为客观.我试过定义objective_ids = targets_ids但没有发生任何事情.

控制器:

class ObjectivesController < ApplicationController
    def objective_params
      params.require(:objective).permit(:name,:code,:description,:objective_ids)
    end
end

编辑
日志文件表示不允许的参数:perspective_id,objective_ids

@H_502_19@解决方法
解决了换线
params.require(:objective).permit(:name,:objective_ids)

params.require(:objective).permit(:name,:objective_ids => [])
原文链接:https://www.f2er.com/ruby/273995.html

猜你在找的Ruby相关文章