vote up 0 vote down star
1

How can I accomplish this?

<% for agent in @broker.agents %>
  ...
  <% if agent.cell %><span class="cell-number">Cell: <%= agent.cell %></span><% end %>
  ...
<% end %>

I want to test to see if the agent has a cell number, and if so, display what's inside the conditional. What I have currently doesn't seem to work; it just displays "Cell: ".

Thoughts?

flag

4 Answers

vote up 1 vote down check

This is what you asked for:

<% for agent in @broker.agents %>
  <% unless agent.cell.blank? %>
    <span class="cell-number">Cell: <%= agent.cell %></span>
  <% end %>
<% end %>

The cell? method works whether cell is nil or an empty string. Rails adds similar functions for all ActiveRecord attributes. This will look a little nicer:

<% for agent in @broker.agents %>
  <span class="cell-number">
    Cell: <%= agent.cell? ? "none given" : agent.cell %>
  </span>
<% end %>

The question mark and colon form a quick "if ? then : else" statement. There are two question marks in the code above because one is part of the method name cell? and the other is a part of the if/then/else construction.

link|flag
vote up 1 vote down
if !agent.cell.blank?

Works. Sweet.

link|flag
You might consider "unless agent.cell.blank?", which some assert is "more Ruby-ish" – James A. Rosen Nov 19 '08 at 23:04
I use unless unless agent.cell.blank because double negatives are awesome. – FlySwat Jan 9 '09 at 22:37
vote up 1 vote down

agent.cell? seems to work the same as agent.cell.blank? in RoR.

link|flag
vote up 0 vote down
<% @broker.agents.each do |agent| %>
  ...
  <% unless agent.cell.empty? %>
    <span class="cell-number">Cell: <%= agent.cell %></span>
  <% end %>
  ...
<% end %>

I find the use of #each, unless, and cell.empty? to be more readable and easier to understand at first glance.

link|flag

Your Answer

Get an OpenID
or

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