gpt4 book ai didi

ruby-on-rails - Mongoid:与别名有很多关系

转载 作者:可可西里 更新时间:2023-11-01 10:44:25 25 4
gpt4 key购买 nike

背景:我有一个有很多玩家的团队模型,允许一个人打电话

@team.players 

并收到一个 Mongoid::Relations::Targets::Enumerable 玩家列表。

目标:我还希望能够检索球队中特定位置的球员列表。例如,如果用户在他的团队中添加了一个投手,我就可以调用@team.pitchers 返回可枚举的投手列表。关于如何设置它的任何想法?

最佳答案

不能将条件放在 mongoid 的 has_many 中。

我能想到的两种方法是在玩家中设置范围并使用@team.players.pitchers 调用

Class Player
scope :pitchers, where(:position => "pitcher")
end

或者在团队中定义一个方法

Class Team

def pitchers
self.players.where(:position => "pitcher")
end
end

关于ruby-on-rails - Mongoid:与别名有很多关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15352046/

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