vote up 1 vote down star

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

1.RHTML
2.html.erb

any significance in this.

flag

2 Answers

vote up 4 vote down check

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

link|flag
ie if it is html then name.html.erb – cdb Aug 28 at 10:32
but why rhtml is using.. – cdb Aug 28 at 10:36
1  
They will essentially do the same thing, the naming is for better organization. For example, your layout files are still named application.rhtml or users.rhtml – Swanand Aug 28 at 10:44
rails will use the plain .erb file if it can't find mime_type.erb – klochner Aug 28 at 18:03
vote up 0 vote down

afaik, .rhtml has long been deprecated.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.