也许我错过了一些简单的事情,但经过一段时间的考虑,我无法弄清楚。
我想检查表单上数据库中的布尔值是否为真,如果它显示向上箭头,如果不是向下箭头。
我有这个
<% 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
答案 0 :(得分:31)
首先,您使用==
测试是否相等,而不是=
,它是赋值运算符。
第二 - 这就是错误所抱怨的 - 你需要使用简单的<%
而不是<%=
和if语句。后一种形式试图将其中的代码转换为字符串,当然写(if something == true).to_s
没有意义 - 没有可能的字符串值。