Im using Ruby on Rails to allow a user to add a project post much like Stackoverflow. I can do this with the regular MySQL database, but I am unsure as to how it works with Mongoid.
This is how the process works:
- User writes some details about the project (client, date, description)
- Add tags like Stackoverflow, where they just simply need to add a space between each one.
- Submit the post
Now in my model I try to break the tags up into an array (splitting where there is a space) and then saving the tags one after the other. However, the row for the Project and the Tag do not reference one another. The Project tag_ids = [] and the Tag project_ids = []
project.rb model
class Project
include Mongoid::Document
include Mongoid::MultiParameterAttributes
field :client, :type => String
field :description, :type => String
field :url, :type => String
field :project_date, :type => Date
has_and_belongs_to_many :tags
attr_accessor :tag_names
after_save :assign_tags
def tag_names
@tag_names || tags.map(&:name).join(" ")
end
def assign_tags
@project = self
@project_id = self.id
if @tag_names
self.tag_names = @tag_names.split(/\s+/).map do |name|
Tag.find_or_create_by(:name => name)
end
end
end
end
tag.rb model
class Tag
include Mongoid::Document
field :name, :type=> String
has_and_belongs_to_many :projects
end
Any ideas as to how to add these reference ids? Thanks!