find_by返回nil类错误

时间:2012-07-05 12:28:34

标签: ruby-on-rails activerecord devise

我在我的控制器中有以下find_by调用,问题是当调用没有id时返回一个nil类错误

if current_user.admin?
  @schedules = Schedule.all
else
  @schedules = Schedule.find_by_team_id(current_user[:team_id])
end

如果id存在,一切正常,任何想法为什么我会收到此错误?

0 个答案:

没有答案