更改contact_us默认布局

时间:2017-07-18 08:17:00

标签: ruby-on-rails contactus

当我在我的rails app中使用contact_us gem时,它会使用应用程序的布局。但是我想为联系我们页面使用另一种布局。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

您可以在相应的控制器中执行此操作,您可以在操作中专门指定备用布局模板。

# controller that calls the page
def action
  render :layout => 'other'
end