我有一个基本的 Ruby on Rails 服务器设置。
在 routes.rb 我有这个:
ActionController::Routing::Routes.draw do |map|
map.connect ':controller/:action/:id'
map.connect ':controller/:action/:id.:format'
root :to => "home#index"
end
在我的控制器/application_controller.rb 我有这个:
class ApplicationController < ActionController::Base
helper :all # include all helpers, all the time
protect_from_forgery # See ActionController::RequestForgeryProtection for details
end
最后,我有 /app/views/posts/index.html.erb ,其中包含一些基本的 HTML。如何让我的页面指向该 HTML 文件。