我是 Sinatra 的新手,我正试图弄清楚如何在模板中查询集合。在这个特定的例子中,我试图找出在一个特定的对象集合(c
在这个例子中)中是否有一个具有特定值的对象。
<% if c.votes #then filter by an id for example through all of the objects... %>
yes, it exists
<% else %>
nope, doesn't exist
<% end %>
另外,我习惯了 django 的过滤器,是否有类似的在线文档概述了 Sinatra 的各种查询功能?