我有一个顺风的 Rails 7 应用程序,我正在做这样的事情:
@list = [{name: "Some", width: "3/12"}, {name: "other", width: "6/12"}]
# In the view
<%= render 'mypartial': list: @list %>
# In the partial
<% list.each do |item|%>
<div class="w-<%= item[:width] %>">
<%= item[:name] %>
</div>
<% end %>
视图生成正确的 HTML ( ex: <div class="w-6/12">
),但浏览器无法识别这些类。如果我在不传递变量的情况下对它们进行硬编码,那么一切正常。我做错了什么或错过了什么?