def show
render :text => params.inspect
end
What is render :text =>?
What is render, :text, and the =>?
Are they standard ruby?
What is What is |
||||
|
|
|
The syntax you see used in that code snippet is not limited to The method is accepting a hash map, using a simplified syntax.
Other code snippets that include the same syntax are:
|
|||||
|
|
|
|||
|
|
|
the syntax you have posted is a prettier way of writing
basically, you are calling a method, passing in a Hash object (which is a collection of key value pairs). The hash contains 1 pair, with a key of :text (: indicating it is a symbol called text), the value being a string of "hello world" I think you should really be reading the ruby getting started guides before digging too deep in to rails. |
|||
|
|
|
The render :text idiom is for rendering text directly to the response, without any view. It's used here for debugging purposes, it's dumping the contents of the params hash to the response page without going through the page view. |
|||||||
|
Renders the clear text "hello world" with status code 200 This is what the |
||||
|
|