在 Rails 3 中,link_to 中如何包含文本和图像?

发布于 2024-11-28 19:25:14 字数 285 浏览 0 评论 0原文

我想要一个带有文本和图像的链接。 在 Rails 3 互联网告诉我你必须这样做之前:

<%= link_to "my text"+image_tag("image.jpg"), {:controller=>:billets}, :class => 'link_to_blog'%>

但是在 Rails 3 中,我的网页中显示了图像的代码而不是图像。现在看来,它转义了html代码。

我如何在 Rails 3 中使用文本和图像进行 link_to ?

I want a link with text and an image.
Before rails 3 internet tells me that you must do :

<%= link_to "my text"+image_tag("image.jpg"), {:controller=>:billets}, :class => 'link_to_blog'%>

However in rails 3 i have the code of the image displayerd in my web page instead of the image. Seems now, it escape the html code.

How can i do a link_to with text and image in rails 3?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玩世 2024-12-05 19:25:14
<%= link_to ("my text"+image_tag("image.jpg")).html_safe, {:controller=>:billets}, :class => 'link_to_blog'%>

或者

<%= link_to {:controller => :billets}, :class => 'link_to_blog' do %>
  My text
  <%= image_tag "image.jpg" %>
<% end %>
<%= link_to ("my text"+image_tag("image.jpg")).html_safe, {:controller=>:billets}, :class => 'link_to_blog'%>

Or

<%= link_to {:controller => :billets}, :class => 'link_to_blog' do %>
  My text
  <%= image_tag "image.jpg" %>
<% end %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文