gpt4 book ai didi

ruby-on-rails - 范围的倒数

转载 作者:数据小太阳 更新时间:2023-10-29 08:29:55 24 4
gpt4 key购买 nike

是否有一种方法可以否定作用域的结果?我有 3 个模型,由 has_many 关联:通过关联

用户.rb

class User < ActiveRecord::Base
has_many :user_training_maps
has_many :trainings, through: :user_training_maps
end

训练.rb

class Training < ActiveRecord::Base
has_many :user_training_maps
has_many :users, through: :user_training_maps
end

user_training_map.rb

class UserTrainingMap < ActiveRecord::Base
belongs_to :user
belongs_to :training
end

之前,我想找到属于(注册)培训的所有用户。在 user.rb 中,这有效:

scope :all_enrolled, -> { joins(:trainings) }

现在,我需要帮助找到所有不属于(未注册)培训的用户。我无法让它工作:scope :all_unenrolled, -> { !joins(:trainings) }相反,它只是返回所有用户。类似未注册用户 =(所有用户)-(已注册用户)

最佳答案

试试这个

scope : all_enrolled, -> { joins(:trainings) }
范围:not_enrolled,-> { where.not(id: all_enrolled) }

关于ruby-on-rails - 范围的倒数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48273854/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com