Submitting this form
<%= form_for @a do |f| %>
<% @a.vals.each do |val| %>
<%= f.text_field :vals, value: val, multiple: true %>
<% end %>
<%= f.submit %>
<% end %>
passes "a"=>{"vals"=>["first", "second", "third"]}
in the params to the controller.
As mentioned in the comments, you want to look at the vals
from an instance of A
not the class A
.
Note about the serialize
(more for the comments saying it looks wrong) I had never used it, that serialize :vals, Array
seems to be working for me
A.create(vals: ['hint 1', 'hint 2']); A.last.vals
# (0.2ms) BEGIN
# SQL (0.4ms) INSERT INTO ... [["vals", "---
- hint 1
- hint 2
"]...
# (0.6ms) COMMIT
# A Load (0.3ms) SELECT "as".* FROM "as" ORDER BY "as"."id" DESC LIMIT $1 [["LIMIT", 1]]
# => ["hint 1", "hint 2"]
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…