Ruby on Rails Saturday, January 31, 2015

I am having issue grasping how to accomplish interacting between two
controller.

My design is as follows: I am coding a Microblog. I can make
posts, which are text, and need to extract hashtags from that content.
Right now I use a form_for to get the input for the micropost. I have
put in the models that a micropost has_many Hashtags and that Hashtags
belongs_to micropost.

My question is where do I put the code to do this? I can't seem to make
a new hashtag directly from the view in a similar way as my microposts.
My initial try was to put the extract code in the create method of the
Post controller. Anything pointing me in the right direction would be
great.

--
Posted via http://www.ruby-forum.com/.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/740640da6cd6817409ef33a684d9a7b2%40ruby-forum.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment