标签: ruby-on-rails
我有一个链接 - &gt;关于..当我点击时出现关于我的信息,但是当用户点击名为“about”的链接而不是“about”“Home”(index.html.erb)时我想要。我怎么可能做到这一点? JavaScript的?还是没有?可能与<% if ... %?
<% if ... %
泰!
答案 0 :(得分:1)
在routes.rb中:
root :to => "home#index"
在您看来:
<%= link_to("About", root_path)%>