I have seen some people using code like this
respond_to do |format|
format.html
format.js
end
What is the purpose of this if we have template.html and template.js. Either can be rendered without specifying respond_to
|
I have seen some people using code like this
What is the purpose of this if we have template.html and template.js. Either can be rendered without specifying respond_to |
|||
|
|
|
Your snippet doesn't do anything special, but the formatting options allow you to provide additional custom behavior if it is necessary. For example, if you want to render your
This is just one of the many things you can do with the format blocks. For more information, see Ruby on Rails Guides: Layouts and Rendering |
|||
|
|
|
The format options can take a block so that you can do some custom rendering such as rendering a file or |
|||
|
|
|
If you don't specify different behavior for the different formats there is no reason to use
|
|||
|
|