在Rails中渲染没有模板的布局

时间:2014-09-05 01:31:23

标签: ruby-on-rails ember.js

我有一个使用ember的rails应用程序,在我的路由中,我将所有路由都转到application#ember。这要求我有一个空的application/ember.html.erb(它是空的)。它只是安抚铁轨,让ember开始。

如何在没有关联模板的情况下渲染布局?

的routes.rb

match '*path' => 'application#ember', via: %i[get post]

视图/应用/ ember.html.erb

# empty! I only exist to make rails happy!

1 个答案:

答案 0 :(得分:1)

render html: '', layout: true

重要的是要注意layout: true部分是必需的