Domanda

hogehoge.html.erb

<% flash.each do |key, value| %>
<div class="alert alert-<%= key %>"><%= value %></div>
<% end %>

I want to transrate into

hogehoge.html.slim

can anybody help me?

È stato utile?

Soluzione

Something like below should do the work:

-flash.each do |key, value|
  div class="alert alert-#{key}"
    = value

Altri suggerimenti

- flash.each do |key, value| 
  div class="alert alert-#{key}"
    = value
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top