我有一個登錄頁面,我不想渲染任何佈局。以下是我有:render:layout => false在開發中工作但不生產
class WelcomeController < ApplicationController
skip_before_filter :authenticate_user!, only: :index
def index
render :layout => false
end
end
當我與rails s
本地運行,它完美的作品,但是當我推到Heroku的看法和在生產中,它仍然呈現的佈局。爲什麼會這樣,我該如何解決它?
它是否在生產中呈現正確的佈局? –
當您進行其他更改並推送到Heroku時,這些更改是否生效? – linesarefuzzy
@ArslanAli - 我不希望在該視圖的任何生產中渲染任何佈局,但它正在渲染我的application.html.erb佈局,但不是當我在生產環境中運行'rails s'時。 – Trinculo