我即将芬兰我的Sinatra Haml学校项目,但我需要解决一些问题(我努力尝试但无法解决问题)。我有一个软件组合CMS,我可以在其中创建新的软件条目(标题,描述,语言和Github链接),语言是从数据库填充的下拉列表。我想让用户从列表中选择一个过滤器并按软件列表中的类别进行过滤,但是当我按下过滤器按钮时,它只显示第一个条目。这是app.rb中的代码
get '/softwares/:filter' do
halt(404,'Forbidden') unless session[:admin]
@sware = Software.all
@categ = Category.all
haml :sware
end
post '/softwares/:filter' do
@sware = Software.find(category: params[:category])
haml :sware
end
这是显示软件列表的HAML代码
%form{:action => "/softwares/:filter", :method => "post", :role => 'form'}
%select{:name => "category"}
- @categ.to_a.each do |category|
%option= category.name
%input{:type => "submit", :value => "Filter", :class => "btn"}
%ul.list
- @sware.each do |software|
%li(class="glyphicon glyphicon-search" aria-hidden="true")
%a{:href =>"/software/edit/#{software.id}", :class =>"btn btn-lg btn-primary"}= software.title
%a.pull-right(href="/software/delete/#{software.id}" class="btn btn-lg btn-danger") Delete
%li(role="separator" class="divider") ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
非常感谢您的回答。我非常感谢您提供的关于我做错了什么的所有信息。
答案 0 :(得分:1)
从你的问题中说出来有点难,因为你没有提供太多信息,例如:你正在使用什么ORM。
假设您正在使用ActiveRecord
:
Software.find(...)
#=> returns the first match
Software.where(...)
#=> returns all matches