コントローラーにハッシュがあり、ビューからデータを取得して表示します。私が見たチュートリアルでは、ハッシュから各キーと値のペアを表示する方法を学びました...しかし、必要なキーと値のペアのみを表示するにはどうすればよいですか?
creating the hash in the controller
@app = {'title' => title, 'description' => description,
'active' => active, 'featured'=> featured,
'partner'=>partner
}
view: this displays each of the key,value pairs
<% @app.each do |key, value| %>
<li><%= "#{key}: #{value}" %>
<% end %>
tried this in the view just to display title, but isn't working
<% @app.select do |ind_app| %>
<strong><%= ind_app["title"] %>
<% end %>