更改 contact_us 默认布局
Changing contact_us default layout
当我在我的 rails 应用程序中使用 contact_us
gem 时,它会使用应用程序的布局。但我想为联系我们页面使用另一种布局。我该怎么做?
这是您可以在各自的控制器中执行的操作,您可以在操作中专门指定一个备用布局模板。
# controller that calls the page
def action
render :layout => 'other'
end
当我在我的 rails 应用程序中使用 contact_us
gem 时,它会使用应用程序的布局。但我想为联系我们页面使用另一种布局。我该怎么做?
这是您可以在各自的控制器中执行的操作,您可以在操作中专门指定一个备用布局模板。
# controller that calls the page
def action
render :layout => 'other'
end