一片空白?数据库字段的版本是0或0?

时间:2010-08-12 10:58:57

标签: ruby-on-rails database

在我的数据库中,我有一个包含外键的字段。有时值为NULL或0.

我知道助手空白了吗?如果字段中设置了数字,是否有相似的内容?因为空白在这里不起作用。

视图的代码是这样的

<%= @b.author unless @b.author_id.blank? %>

2 个答案:

答案 0 :(得分:0)

你可以写自己的帮手

def identified? author
  author.id.blank? or author.id == 0
end

答案 1 :(得分:0)

您可以尝试以下方式:

<% if @b.author_id == 0 %>
  #display something here
<% else %>
  #display something else
<% end %>

在你看来。