我有 3 个表
categorizations 就是中间表,里面自然有 post_id 和 category_id
我在 rails console 里输入
Post.create(:title => "first post")
Category.create(:name => "hello")
Post.first.categories << Category.first
我现在要怎么通过Post.first
找到 Category.name或者
Category.id```.
Post.first.categories
这样会得到所有的数据,我只想取 category 的 id 和 name