0

我有以下带有范围的用户对象:

Class User < ActiveRecord::Base
  ...
  scope :vendors,   lambda { where(:user_type => 'v') }
  scope :customers, lambda { where(:user_type => 'c') }
  ...

我想inactive为供应商和客户创建一个行为不同的新范围,例如在伪代码中

  scope :inactive, lambda {
    if (:user_type => 'v')
      where(some_condition_only_for_vendors)

    elsif (:user_type => 'c')
      where(different_condition_only_for_customers)

    else
      where(another_condition)

    end
  }

这样,我可以users.vendors.inactive根据一组条件获取所有不活跃的供应商,并users.customers.inactive根据另一组条件获取所有不活跃的客户。

这是可能的还是有更好的方法来做到这一点?请注意,这里有很多遗留代码,因此实现继承可能不可行。

谢谢!

4

1 回答 1

0

我立即看到的问题是您从类中调用了一个范围,并且没有记录实例来获取 user_type。

User.inactive

所以你可能有类似的东西:

class User < ActiveRecord::Base
  scope :inactive, lambda { |user_type|
    case user_type
    when 'v'
      where(some_condition_only_for_vendors)
    when 'c'
      where(different_condition_only_for_customers)
    else
      where(another_condition)
    end
  }

  def related_users
    User.inactive(user_type).all
  end
end
于 2012-09-26T19:46:08.047 回答