我在助手中有一种方法,例如
def m_product_ids(ids)
product = MProduct.where(product_id: ids).select(:product_id,:product_name,:product_order)
product.map { |r| ["#{r[:product_id]}:#{r[:product_name]}#{r[:product_order]}", "#{r[:product_id]}"] }
end
当我使用m_product_ids
来调用options_for
时,在编辑表单中选择它会引发类似
无法将PG :: Result转换为字符串。