如何使用ActiveModel :: Model在类中使用序列化作为数组属性?

时间:2015-11-24 16:04:37

标签: ruby-on-rails ruby-on-rails-4 activemodel

我正在使用无表格模型来创建表单。我想将其中一个模型属性设置为数组

我知道以下代码不起作用,只是显示我想要做的事情:

型号:

class Quote
  include ActiveModel::Model
  include ActiveModel::Serialization

  attr_accessor :name, :length, :width, :city
  serialize :quantity, Array
end

然后使用以下表格引用:

f.text_field :quantity, multiple: true, class: 'form-control', type: 'number'
f.text_field :quantity, multiple: true, class: 'form-control', type: 'number'

我该如何实现这一目标?谢谢。

0 个答案:

没有答案