渲染一个动作没有意义。您需要使用布局呈现模板(或文件)。
# Path relative to app/views with controller's layout
render :template => params[:path]
# ... OR
# Absolute path. You need to be explicit about rendering with a layout
render :file => params[:path], :layout => true
您可以通过页面缓存从单个操作中提供各种不同的模板。
# app/controllers/static_controller.rb
class StaticController < ApplicationController
layout 'static'
caches_page :show
def show
valid = %w(static1 static2 static3)
if valid.include?(params[:path])
render :template => File.join('static', params[:path])
else
render :file => File.join(Rails.root, 'public', '404.html'),
:status => 404
end
end
end
最后,我们需要定义一个路由。
# config/routes.rb
map.connect 'static/:path', :controller => 'static', :action => 'show'
尝试访问这些静态页面。如果路径不包含有效模板,我们将渲染 404 文件并返回 404 状态。
http://localhost:3000/static/static1
http://localhost:3000/static/static3
http://localhost:3000/static/static2
如果您查看 app/public,您会注意到一个包含 static1.html、static2.html 和 static3.html 的 static/ 目录。在第一次访问页面后,由于页面缓存,任何后续请求都将完全是静态的。