Вопрос

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?

Это было полезно?

Решение

Something like below should do the work:

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

Другие советы

- flash.each do |key, value| 
  div class="alert alert-#{key}"
    = value
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top