3

在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
4

1 回答 1

6

你忘记了这个=标志:

<% link_to
  ^
  |
 here
于 2012-12-01T16:25:12.773 回答