我需要在我的 Rails 应用程序中为 Galleria 添加数据描述和数据标题,但我看不到如何使用图像标签执行此操作。到目前为止,我有这个:
<div id="galleria">
<% @entries.each do |entry| %>
<%= image_tag entry.filename, :title => "title", :class => "class", :data-description => entry.caption, :data-title => entry.caption %>
<% end %>
</div>
但这会引发未定义的局部变量或方法“描述”错误,那么我将如何在 rails 3 中执行此操作?