I would like to create form with text_fields
- TITLE
- CONTENT
- TAGS
I have Post (TITLE, CONTENT) and Tag (TAGS) model. TAGS is a single text field. What do I have to do to save TAGS to Tag model. Let say I write banana, juice, new tag in the TAGS field, how can this be parsed into array and then save in the Tag model.
Thx!