使用or运算符时,我的Ruby if语句失败。
<% if @body_id == 'plants' || 'trees' %>
<meta name="robots" content="noindex, nofollow">
<% end %>
答案 0 :(得分:3)
您不能使用||
,而是['plants', 'trees'].includes? @body_id
代替。
答案 1 :(得分:1)
不应该吗?
<% if @body_id == 'plants' || @body_id == 'trees' %>