Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要创建没有跟随链接link_to。
link_to
我正在寻找这样的东西:
<%= link_to "example", example_path, :target => "_blank" %>
但是当然没有跟随。
您可以使用 link_to 指定其他属性:
<%= link_to "example", example_path, rel: 'nofollow' %>
产生:
<a rel="nofollow" href="example_path">example</a>