我在activeadmin中使用枚举的复选框列表来选择多个值:
c.input :weekdays, as: :check_boxes, collection: BusinessHour.weekdays.keys
出于某种原因,有隐藏的附加值:
<input type="hidden" name="listing[listing_prices_attributes][0][weekdays][]" id="listing[listing_prices_attributes][0]_weekdays_none" value="" autocomplete="off">
因此,当提交表单时,它实际上也在数组中添加了空值“”,并产生了问题。
还尝试添加include_hidden:false,include_blank:false,但它也不改变空字符串值。
为什么会这样?
1条答案
按热度按时间cld4siwp1#
我遇到过类似的问题,我是这样解决的:在我的例子中,我有服务和订阅模型。我在服务编辑表单中嵌套了订阅的属性。我过滤了请求参数,然后调用super。