ruby on rails如果在index.html.erb页面上带有boolean的语句

时间:2009-07-29 15:36:44

标签: ruby-on-rails

也许我错过了一些简单的事情,但经过一段时间的考虑,我无法弄清楚。

我想检查表单上数据库中的布尔值是否为真,如果它显示向上箭头,如果不是向下箭头。

我有这个

<% for probe in @probes %>
    <tr id="<%= cycle('list-line-odd', 'list-line-even') %>">
      <td>
        <%= if probe.online = true %>
        <%= image_tag("online-icon.png", :alt => "Online") %>           
        <%= end %>
    </td>
      <td><%= link_to probe.probe_name, probe %></td>
    </tr>
  <% end %>

但它会回来这个错误

编译错误

syntax error, unexpected ')', expecting kTHEN or ':' or '\n' or ';'

@output_buffer.concat "\t      \t"; @output_buffer.concat(( if probe.online = true ).to_s);
@output_buffer.concat "\n"

syntax error, unexpected kEND
@output_buffer.concat "      \t \t"; @output_buffer.concat(( end ).to_s);@output_buffer.concat "\n"

箭头指向.to_s

1 个答案:

答案 0 :(得分:31)

首先,您使用==测试是否相等,而不是=,它是赋值运算符。

第二 - 这就是错误所抱怨的 - 你需要使用简单的<%而不是<%=和if语句。后一种形式试图将其中的代码转换为字符串,当然写(if something == true).to_s没有意义 - 没有可能的字符串值。