I'm still very new to rails programming, and it's my first question at stackoverflow.
I have models Group and Product like so:
class Group < ActiveRecord::Base
has_many :products
end
class Products < ActiveRecord::Base
belongs_to :Group
end
Now, I have some data filled with multiple products in multiple groups. What should I do when I want to move one of the product from one group to another?
-Should I be using has_many :through relationship (and is that the only suggested way)? (Because I think that dealing with 3 tables are more complicated and calculation-intensive than just 2 tables.)
-Is there a preferred way for doing this?
Here's the things I've tried: -Setting nil to group_id in products and updating it to remove the association which worked. I'm just not sure if this is the right way of disassociating an object.
-I tried creating a custom function in groups_controller.rb like below. (and I know that this may not be the right way of doing it, but I'm a bit desperate)
in the /view/groups/show.html.erb I have
<% form_tag group_add_reference_path(@group.id), :method => 'put' do %>
<%= hidden_field_tag 'params[group_id]', "#{@group.id}" %>
<div class="field">
<%= collection_select('params', 'product_id', Product.where(:group_id => nil), :id, :name) %>
</div>
<div class="actions">
<%= submit_tag "assign", :name => nil %>
</div>
<% end %>
and in the groups_controller.rb I have
def add_reference
@group = Group.find(params[:group_id])
@product = Product.find(params["product_id"])
@group.products << @product
end
-I've read Detailed Association Reference chapter of association_basics in railsguides, and since it has collection<<(object) function added, I though I should be able to do something close to above. (which is not working because @product seems to be nil for some reason, and even if I set it to a valid ID and hardcode it, it fails on the line after that)
