Rails 的 Controller 调用其他路径的 View 模板 2015/04/24 16144 class HelloController < ApplicationController def there if Time.now.hour == 12 render(:file => 'C:\here.rhtml') end end def here end end