我有两个 controller:pages controller 和 rooms controller.
在 pages 下有一个 view: pages/last.html.erb
rooms controller 中定义了一个 show 方法
def show
@rooms=RoomType.all
respond_to do |format|
format.html { redirect_to 'pages/last'} #跳转到 last.html.erb 页面
end
end
请问:我现在想在 pages/last.html.erb 中取到@rooms,我应该怎么做呢??