我有两种模式:产品和区域
产品:
_id,
name,
price,
region_id
区域:
_id,
region_name
我想获得包含以下内容的区域结果
_id,
region_name,
**the number of products from the region**
使用Region.find()然后我得到了
[ { _id: XXX, region_name: 'ABC' }, ... ]
我应该使用populate()还是其他方法?
我的设置:Node JS,Express,猫鼬
谢谢!