我有一个使用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!
答案 0 :(得分:1)
render html: '', layout: true
重要的是要注意layout: true
部分是必需的