所以,也许我理解错了,因为我来自 SQL 世界:我有一个商品集合:
_id: "0234weasq43rq",
title: "Panasonic",
descr: "blah blah",
price: 132,
specifications {
weight: 135,
color: "black",
type: "LCD",
diagonal: 50
}
_id: "0234weasq43rq",
title: "Samsung Galaxy Tab",
descr: "blah blah",
price: 132,
specifications {
weight: 135,
color: "white",
standard: "GSM",
wifi: "Yes"
}
我可以为不同类别的商品(例如手机和电脑)提供不同的规格吗?goods.find(specifications { diagonal: 50 })
如果不是所有商品都具有“对角线”规范,那么使用查询查找商品是否有任何问题?
谢谢!