Turn off layout for one of action

后端 未结 4 1795
遇见更好的自我
遇见更好的自我 2020-12-08 01:20

My situation: View action of ReportsController should render pure html, but not as a file (to view it in browser and save it after). So for rendering I use view template vie

4条回答
  •  伪装坚强ぢ
    2020-12-08 02:02

    In the respond block, add layout: false.

    For example:

    respond_to do |format|
      format.html { render :layout => false } # your-action.html.erb
    end
    

提交回复
热议问题