繁体   English   中英

Rails图片link_to无法正常工作

[英]Rails image link_to not working

这很好

 <%= 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"  %>

请告诉我我如何使它工作。

试试这个,将image_tag和class传递给link_to标签

<%=link_to( image_tag("up.png"),voteup_path(post_id: post.id, topic_id: post.topic_id), class: "xta") %>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM