对rails很新,所以请提前预测新问题。我正在尝试通过深层嵌套属性(?)查询或排序帖子:
user_id: 3,
type_id: 1,
properties: {
'title' => 'foo',
'body' => 'bar',
'category' => ['','foobish'] }
在rails控制台中,我可以通过Post.last.properties[category][1]
但是我希望能够在帖子控制器中找到这个,我该怎么做呢?我最接近的是@foo = Post.where(properties: [Category: ['', 'foobish']])