能力.rb:
can :index, Product, Product.owned_by(user) do |obj|
obj.owned_by?(user)
end
当我调用 can?(:index, Product) CanCan 发送
SELECT COUNT(*) FROM `products` WHERE ...
在导航栏中,我有很多项目,每个项目都有 can?(:index,...),这会减慢我的页面速度。
ability.rb 有问题吗?
能力.rb:
can :index, Product, Product.owned_by(user) do |obj|
obj.owned_by?(user)
end
当我调用 can?(:index, Product) CanCan 发送
SELECT COUNT(*) FROM `products` WHERE ...
在导航栏中,我有很多项目,每个项目都有 can?(:index,...),这会减慢我的页面速度。
ability.rb 有问题吗?