我有一个用户表。它包含一个字段“user_type”。我将以下范围 stmts 添加到 user.rb 文件中:
scope :uemployee, where(:user_type => 'employee')
scope :uclient, where(:user_type => 'client')
scope :ucontractor, where(:user_type => 'contractor')
我创建了一个视图,我希望它列出他的员工。这是我尝试使用的代码:
<% @users.uemployee.each do |user| %>
但是,我得到“nil:NilClass 的未定义方法‘uemployee’”
我究竟做错了什么?
谢谢