Rails 的 Controller 调用其他路径的 View 模板

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

class HelloController < ApplicationController
  def there
    if Time.now.hour == 12
     render(:file => 'C:\here.rhtml')
    end
  end
  
  def here

  end
  
end