Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a Article and a Tag model associated in a n-m relationship.

I want to be able to find tags of a given article and articles of a given tags, e.g.:

tags = Article.find(id).first.tags

or

articles = Tag.find(id).first.articles

My current Tag model is:

class Tag
  include Mongoid::Document

  has_and_belongs_to_many :articles
end

My current Article model is:

class Article
  include Mongoid::Document
  include Mongoid::Timestamps

  attr_accessor :tag_list

  before_save :assign_tags

  field :title, :type => String
  field :notes, :type => String

  has_and_belongs_to_many :tags

  private

  def assign_tags
    if @tag_list
      self.tags = @tag_list.gsub(/\s+/,"").split(/,/).uniq.map do |name|
        Tag.find_or_create_by(:name => name.strip)
      end
    end
  end
end

How can I implement this using mongoid? At the moment the tag model doesn't know anything about related articles.

Best regards!

share|improve this question

1 Answer

This doesn't help?

http://mongoid.org/docs/relations/referenced/n-n.html

share|improve this answer
It seems that this was a bug in the latest Mongoid version. It's fixed in the master branch now. – 0x7FFFFFFF Sep 30 '11 at 9:32
ok. thanks for the update – Bashar Abdullah Oct 3 '11 at 11:16

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.