在我的应用程序中,我有一个产品模型,其中包含四个图像路径字段。我用它来制作幻灯片。
但是,我希望将所有这些路径放在一个大文本字段中,并通过任何有效的方式将它们分开(换行将是表单中最容易处理的)。
我在想类似的事情:
<% for ... in @screenshots %>
<%= lightbox_to(@product.screenshot, @product.screenshot, "screenshots") %>
<% end %>
并希望这会导致:
<%= lightbox_to(@product.screenshot1, @product.screenshot1, "screenshots") %>
<%= lightbox_to(@product.screenshot2, @product.screenshot2, "screenshots") %>
<%= lightbox_to(@product.screenshot3, @product.screenshot3, "screenshots") %>
...
非常感谢您的意见!
瓦尔