我有一个带有类别的产品类别。我想插入没有选择任何类别的产品。 我的代码
<% = collection_select (:product,:category_id, @categories_select,:id,:description, {:include_blank => 'Select ...'}, {id: "category", class: "form-control w-100" })%>
当我从以下错误中单击“保存”时:
NoMethodError-未定义的方法`map',无:NilClass:
在终端上显示{"category_id" => ""}
,我想在数据库中插入NULL。