Я думаю, что код более явный
опция A
class RedirectController < ApplicationController
def index
redirect_to :controller => 'posts', :action => 'show', :id => 1
# it works
end
end
опция B
class RedirectController < ApplicationController
def index
render :controller => 'posts', :action => 'show', :id => 1
# it doesn't work
end
end
Возможно в (B) загрузить другое действие в другоеконтроллер?(а не только вид) Как?Спасибо