Question

Which is the Recommended File Extension for rails view pages(2.3.2)

1.RHTML
2.html.erb

any significance in this.

Was it helpful?

Solution

The standard naming:

template_name.mime_type.erb

Significance:

The controller will look for appropriately named template file when responding to different request formats:

def show
    @user = User.find(params[:id])

    respond_to do |format|
      format.html # Looks for show.html.erb
      format.xml # this will look for show.xml.erb
      # OR you can always use render :xml facility
      # format.xml  { render :xml => @user }
    end
end

Link for API Docs: http://api.rubyonrails.org/classes/ActionController/MimeResponds/InstanceMethods.html

OTHER TIPS

afaik, .rhtml has long been deprecated.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top