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