link_to root显示为空

时间:2012-12-01 16:21:02

标签: ruby-on-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

1 个答案:

答案 0 :(得分:6)

您忘记了=标志:

<% link_to
  ^
  |
 here