我在 Rails 应用程序中使用 Mongoid。假设有一个模型叫做Product
. 每个product
文档都有一些其他文档没有的字段。这里有2个例子。
{name: "Product A", color: "Yellow", discount: "0.9"}
{name: "Product B", color: "Blue", size: "XXL"}
该字段discount
或size
可能会不时更改。假设我有一个表单可以让用户按字段名称(即discount
)和值进行搜索。如何将包含字段名称的变量传递给 Mongoid Criteria?
谢谢。