我在 rails 3.2.21,ruby 版本是 2.0
我的要求是为特定模型提供基于角色的条件默认范围。例如
将角色变量视为登录用户的属性
if role == 'xyz'
default_scope where(is_active: false)
elsif role == 'abc'
default_scope where(is_active: true)
end
我在 rails 3.2.21,ruby 版本是 2.0
我的要求是为特定模型提供基于角色的条件默认范围。例如
将角色变量视为登录用户的属性
if role == 'xyz'
default_scope where(is_active: false)
elsif role == 'abc'
default_scope where(is_active: true)
end
编程中没有什么是不可能的。
一般来说,使用default_scope
是一个坏主意(很多文章都写在这个主题上)。
如果您坚持使用当前用户的属性,您可以将其作为参数传递给范围:
scope :based_on_role, lambda { |role|
if role == 'xyz'
where(is_active: false)
elsif role == 'abc'
where(is_active: true)
end
}
然后按如下方式使用它:
Model.based_on_role(current_user.role)
旁注:Rails 3.2.x - 认真吗?...
default_scope where(
case role
when 'xyz' then { is_active: false }
when 'abc' then { is_active: true }
else '1 = 1'
end
)
另外,请阅读 Andrey Deineko 的答案,特别是关于默认范围使用的部分。