Rails 在 Controller 中选择要显示的 View 2014/12/28 13826 class HelloController < ApplicationController def there if Time.now.hour == 12 render(:action => :here) end end def here end end