Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
尝试这样的事情:
<%= link_to "##{p.id}", "Something in here?", :class => "fg", :data-toggle => "modal" %>
如果您尝试将图像链接到页面上的锚点,请执行以下操作:
<%= link_to(image_tag(p.thumbnail, class: "hoi"), "##{p.id}") %>
您可以在 erb 块 ( <%= %>)内进行正常的 ruby 字符串插值
<%= %>