我正在与motorclient一起工作,并且在下面的查询中我想获取某个用户的平均评分。
res = apps.db.rating.aggregate({
"$group": {
"_id": ObjectId(user_id),
"avg_rating": {"$avg": "$rating"}
}
})
然后当我尝试提取该平均值时
print('avg rating', res['avg_rating'])
这会引发错误TypeError: 'AsyncIOMotorLatentCommandCursor' object is not subscriptable
我已经在Google上搜索了很多,但是我没有找到如何使用motor
从聚合查询中提取结果的解决方案。