我有一家与 has_many 关联的商店,并在其中包含物品,以便收到属于该商店的物品
format.json { render json: {:shop => @shops.as_json(:include => :items)}}
现在它提供了属于该商店的所有物品,但我想获得具有特定条件的物品,比如 item_type = "accessories"。那么我该怎么做呢?请帮我。
编辑
我在How to get the value of include with conditions? 中提出了一个新问题?