controller#edit中的TypeError无法将PG :: Result转换为字符串

时间:2019-03-08 07:36:18

标签: ruby-on-rails

我在助手中有一种方法,例如

 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转换为字符串。

0 个答案:

没有答案