只需在下面添加我的解决方案,以防其他人遇到问题。
允许 Administrate 接受 null 值,即使由于模型中关系的祖先 gem 使用可能需要存在。例如。
class Category < ApplicationRecord
has_ancestry
end
您可以在管理中覆盖管理控制器中的“资源参数”。
# Override `resource_params` if you want to transform the submitted
# data before it's persisted. For example, the following would turn all
# empty values into nil values. It uses other APIs such as `resource_class`
# and `dashboard`:
def resource_params
params.require(resource_class.model_name.param_key).
permit(dashboard.permitted_attributes).
transform_values { |value| value == "" ? nil : value }
end
第2部分。
在仪表板类别中,我想将 ID 更改为描述性名称。Ancestry gem 使用字符串字段来显示父类别的 ID。
仪表板 > category_dashboard.rb 文件
ATTRIBUTE_TYPES = {
ancestry: Field::Select.with_options(collection: Category.all.map do |cat| [cat.name, cat.id] end),
#ancestry: Field::Text,
}.freeze
我已将 attriubte_type 设置为带有选项值而不是文本字段的选择,并映射了名称和 ID。
这使我可以选择父类别的 ID,查看其名称而不是 ID。但是,我无法选择 Null 值,如果我希望第 1 部分执行其操作并设置空白字段 = null,我需要将此选择区域留空。由管理员用户添加时使类别成为父类别。
您可以使用生成命令在管理中生成所有字段。(一旦有机会,我会将其添加到评论中)。
添加后,我可以编辑选择字段表单。这允许我将 :include_blank => 'Primary Category' 添加到 adminstrate 中的选择字段表单中。
<% if field.selectable_options.first&.is_a?(Array) %>
<%= f.select(
field.attribute,
options_from_collection_for_select(
field.selectable_options,
:last,
:first,
field.data.presence,
),
:include_blank => 'Primary Category'
) %>
<% else %>
<%= f.select(
field.attribute,
options_from_collection_for_select(
field.selectable_options,
:to_s,
:to_s,
field.data.presence,
),
:include_blank => 'Primary Category'
) %>
<% end %>