if request.post?
     @author = Author.new(params[:author_name])
    @publisher = Publisher.check_this(params[:publisher_name])
    @category = Category.check_this(params[:category_name])
    @storage = Storage.check_this(params[:storage_name])

    end

That's my code for other models and it worked. How do I add @author ....
into book class as arguments.

Emeka


On Sun, May 3, 2009 at 1:40 PM, gundestrup <[email protected]> wrote:

>
>
> http://www.onlamp.com/pub/a/onlamp/2007/01/05/revisiting-ruby-on-rails-revisited-2.html
>
> read and do this introductions.
> As you can see, when you create a book, you collect the ids form the
> other models, and then save them in the book model.
>
> On May 3, 1:30 pm, Emeka <[email protected]> wrote:
> > This is what I am missing, how to include the ids of the models that
> > "has_many" of book model while saving. How to make four ids along with
> the
> > book data.
> >
> > Regards,
> > Emeka
> >
> > On Sun, May 3, 2009 at 1:43 AM, gundestrup <[email protected]> wrote:
> >
> > > exactly what are you missing.
> > > What is your problem.
> > > A form problem is a very broad formulation...
> >
> > > regards
> > > svend
> >
> > > On May 2, 5:45 pm, janus <[email protected]> wrote:
> > > > Have it already but I am still not able to get my head around it.
> >
> > > > On May 2, 3:57 pm, Eric <[email protected]> wrote:
> >
> > > > > > My problem is on however to have multiple models in one view. I
> was
> > > > > > able to use form_tag togather data form all models except book.
> How
> > > > > > could I get this resolved is my concern? I know that this is a
> new
> > > > > > bie's kind of question, but I crave for your understand.
> >
> > > > > You'll want to look at fields_for. Watch the "Complex Forms"
> trilogy
> > > > > of Railscasts from a couple years ago.
> >
> > > > > -eric
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to