使用时在导轨中:
<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
答案 0 :(得分:6)
您忘记了=
标志:
<% link_to
^
|
here