在rails中使用时:
<h1><% link_to "Home", root_url %></h1>
标签内没有任何内容。我的 routes.rb 是:
MyApp::Application.routes.draw do
root :to => 'posts#index'
resources :posts
match "/help" => "help#index"
end
在rails中使用时:
<h1><% link_to "Home", root_url %></h1>
标签内没有任何内容。我的 routes.rb 是:
MyApp::Application.routes.draw do
root :to => 'posts#index'
resources :posts
match "/help" => "help#index"
end