Adding tags to posts in Ruby on Rails

后端 未结 3 1366
抹茶落季
抹茶落季 2021-01-02 00:25

I am creating a blog in Rails using Scaffolding. I want to add a \'tags\' field on each post like on StackOverflow and WordPress. I can do this with the string type (

3条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-02 00:36

    Err, the usual way? Add Tag entity, add has_many :tags in your Post entity. Then migrate. That would be all.

提交回复
热议问题