I'm using Ruby on Rails and need to run a block of Ruby code in one of my html.erb files. Do I do it like this:
<% def name %>
<% name = username %>
<%= name %>
or like this:
<% def name
name = username %>
<%= name %>
Thanks for reading.
|
I'm using Ruby on Rails and need to run a block of Ruby code in one of my html.erb files. Do I do it like this:
or like this:
Thanks for reading.
| |||||
feedback
|
|
It's really wired to define a method in ERB file and really don't advice. If you want call a block like #each you can do :
You forget the end. | ||||
|
feedback
|
|
If you need extra functions in your view, you normally declare those inside a helper. For each controller, if there is a helper it is automatically loaded. For instance, if you have a PeopleController, in the
Another, very clean alternative, is to use the Presenter pattern, but i think it is less common (unfortunately). Otherwise, if you do need multiple lines of ruby code inside a erb view, which i try to avoid, i prefer the following style:
Also for me code indentation is more important than html indentation, so i will prefer something like
But i am always very interested to hear different opinions in this matter. | |||||
feedback
|