我想要我的 td 中的超链接,所以我有这样的东西: -6ren">
gpt4 book ai didi

ruby-on-rails - 如何在 RoR 中使用 content_tag 嵌入标签?

转载 作者:数据小太阳 更新时间:2023-10-29 07:01:40 26 4
gpt4 key购买 nike

我有这个可以为我生成一个超链接:

<%= link_to "Example", "http://example.com" %>

我希望它显示在 td 标签中,所以我想使用这个 content_tag 来帮助我:

<%= content_tag(:td,"", :class => "example")%>

我想要我的 td 中的超链接,所以我有这样的东西:

<%= content_tag(:td,<%= link_to "Example", "http://example.com" %>, :class => "example")%>

但是我收到语法错误,我该怎么办?

最佳答案

内联:

<%= content_tag(:td, link_to('Example', 'http://example.com'),
:class => 'example') %>

或 block 形式:

<% content_tag(:td, :class => 'example') do %>
<%= link_to('Example', 'http://example.com') %>
<% end %>

关于ruby-on-rails - 如何在 RoR 中使用 content_tag 嵌入标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2006654/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com