在rails中查询深层嵌套的属性

时间:2016-05-06 19:05:56

标签: sql ruby-on-rails querying

对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']])

0 个答案:

没有答案