Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating a form for editing embedded documents with MongoMapper

I'm playing around with MongoMapper but I'm having trouble figuring out how to create a form for an object that has embedded documents.

With ActiveRecord, I'd use fields_for but when asked if this would be supported a few months ago, MongoMapper author John Nunemaker wrote: "Nope and nope. It is really [not] that hard with attr_accessor's."

OK, fair enough, but how do you write the form for this to work?

I'm not interested in using the nested form implementations that are out there because I want to do this the "normal" way as I'm learning about MongoMapper.

My model is simple enough - I've got a Person with embedded documents for email addresses, phone numbers, etc. I do not care about updating existing embedded documents. They can be re-created from the form input each time a Person is edited.

like image 554
Luke Francl Avatar asked Mar 19 '10 19:03

Luke Francl


1 Answers

Take a look here Rails MongoMapper EmbeddedDocument Form Help, this is a nice solution.

like image 54
Patrick Klingemann Avatar answered Sep 27 '22 23:09

Patrick Klingemann