渲染动作没有任何意义。您将要使用布局渲染模板(或文件)。
render :template => params[:path]
render :file => params[:path], :layout => true
您可以通过具有页面缓存的单个操作来提供各种不同的模板。
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
最后,我们需要定义一条路线。
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 /目录。首次访问页面后,由于页面缓存,所有后续请求将完全是静态的。