views:

270

answers:

3

Hello all,

I'm sure that this question has been asked somewhere before, as the habtm relationship seems to be very confusing.

I have two models, users and promotions. The idea is that a promotion can have many users, and a user can have many promotions.

class User < ActiveRecord::Base
  has_and_belongs_to_many :promotions
end

class Promotion < ActiveRecord::Base
  has_and_belongs_to_many :users
end

I also have a promotions_users table/model, with no id of its own. It references user_id and promotions_id

class PromotionsUsers < ActiveRecord::Base
end

So, how do I add a user to a promotion? I've tried something like this:

user = User.find(params[:id])
promotion = Promotion.find(params[:promo_id])
promo = user.promotions.new(promo)

This results in the following error:

NoMethodError: undefined method `stringify_keys!' for #<Promotion:0x10514d420>

If I try this line instead: promo= user.promotions.new(promo.id)

I get this error:

TypeError: can't dup Fixnum

I'm sure that there is a very easy solution to my problem, and I'm just not searching for the solution the right way.

Thank you for your time, and any help you can provide.

+4  A: 
user = User.find(params[:id])
promotion = Promotion.find(params[:promo_id])
user.promotions << promotion

user.promotions is an array of the promotions tied to the user.

See the apidock for all the different functions you have available.

Tony Fontenot
Thanks for the quick response. I figured I was overcomplicating things.
Kevin Whitaker
A: 

You can do just

User.promotions = promotion #notice that this will delete any existing promotions

or

User.promotions << promotion

You can read about has_and_belongs_to_many relationship here.

j.
Be careful with `User.promotions = promotion` as that will delete any existing and add the one passed in.
Tony Fontenot
j., i haven't seen http://railsapi.com. This is awesome! So much better than http://api.rubyonrails.org.
macek
@Tony: Yes, I know that :] Tks.
j.
@macek: much much better! ;]
j.
+3  A: 

This is also useful

User.promotion.build(attr = {})

so, promotion object saves, when you save User object.

And this is

User.promotion.create(attr = {})

create promotion you not need to save it or User model

davit