Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my model Post.rb I have serialize :facts call. What I try to accomplish is that users can save their own key/value pairs to the facts column. When user opens /posts/new page, I want there to be three empty key-value inputs. User can then fill in values like:

[color                ]: [very blue     ]
[length of the street ]: [not that long ]
[etcetera             ]: [etcetera      ]

To build the form I'm using Simple Form gem and tried already to use

= f.simple_fields_for :facts do |ff|
  = f.input :key
  = f.input :value

It generates only one key/value and saves it very good in YAML format in 'facts'-field! However when I try to add an array it doesn't work. It saves only the last key/value pair.

Well, I know what problem is, but not how to solve it.

I need something that would generate input fields with values like: post[facts][][key] and post[facts][][value]. Right now it only generates three of post[facts][key] post[facts][value] inputs.

share|improve this question

1 Answer

Did you try to merge an empty pair with existing elements in the collection?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.