这很好用
<%= link_to "up.png", voteup_path(post_id: post.id, topic_id: post.topic_id), class: "xta" %>
但不是这个
<%= link_to image_tag("up.png"), voteup_path(post_id: post.id, topic_id: post.topic_id), class: "xta" %>
请告诉我如何才能让它发挥作用。
答案 0 :(得分:4)
尝试此操作,将image_tag
和课程传递给link_to
代码
<%=link_to( image_tag("up.png"),voteup_path(post_id: post.id, topic_id: post.topic_id), class: "xta") %>