0
誰知道是什麼where(:genres.in => [ "rock" ]
意味着mongoid
我看到文件這些代碼:??什麼地方(:genres.in => [「石頭」]意味着Mongoid,我怎麼能找到參考
class Band
include Mongoid::Document
field :country, type: String
field :genres, type: Array
scope :english, ->{ where(country: "England") }
scope :rock, ->{ where(:genres.in => [ "rock" ]) }
end
https://docs.mongodb.com/mongoid/master/tutorials/mongoid-queries/#named-scopes
似乎就意味着找到在哪裏風格包含「石頭」的文件,但我不知道,因爲我無法找到一個參考解釋in
。