我通过渲染我的项目<%= render @items%>
我添加了迁移AddCatIdToItems cat_id:string
Cat_id 的: testA、testB、testC。
如何仅渲染具有特定 id 的项目testA
?
例如:<&= @items.where(:cat_id => '1')&>
我使用种子文件来填充项目的。例如:
Tag.create([
{ name: 'example' },
{ name: 'example2' },
{ name: 'example3' }
])
我怎样才能将 cat_id 传递给它?
正在{ name: 'example', cat_id:1 }
工作吗?