在我的模型中,我有一个string
名为god_type
.
例子:
Ice,Fire
Ranged,Cannon
Fire,Ranged
我将使用 Isotope 根据它们的god_type
.
我需要输出 HTML 看起来像:
<div class="item Fire Ranged">
</div>
这是我尝试过的:
#gods-list.isotope-container
- for god in @gods
.item class='#{god.god_type.split(",").each { |c| c }}'
a href='#{god_path(god)}' class='god'
img src='#{god.thumbnail.url(:thumb)}'
h2= god.name
以及生成的 HTML:
<div class="item ["Fire", "Ranged"]">
...
</div>
我究竟做错了什么?