用rails添加alt属性?

时间:2018-02-22 20:01:17

标签: html ruby-on-rails erb

如何在这行代码中添加alt=""<%= image_tag current_user.image if current_user.image %>我尝试的所有内容都会给我一个语法错误!

1 个答案:

答案 0 :(得分:4)

像这样:

<%= image_tag(current_user.image, alt: "great image") if current_user.image %>