|
@@ -129,10 +129,53 @@ export async function GET(request) {
|
|
|
|
|
|
const skip = (current - 1) * pageSize;
|
|
|
const totalMatches = await Match.countDocuments(searchQuery);
|
|
|
- const matchesData = await Match.find(searchQuery)
|
|
|
- .sort({ date: -1, time: 1 })
|
|
|
- .skip(skip)
|
|
|
- .limit(pageSize);
|
|
|
+ // const matchesData = await Match.find(searchQuery)
|
|
|
+ // .sort({ date: -1, time: 1 })
|
|
|
+ // .skip(skip)
|
|
|
+ // .limit(pageSize);
|
|
|
+
|
|
|
+ const matchesData = await Match.aggregate([
|
|
|
+ // 1. $match 阶段:使用 searchQuery 进行过滤
|
|
|
+ {
|
|
|
+ $match: searchQuery
|
|
|
+ },
|
|
|
+ // 2. $lookup 阶段:从 Prediction 集合中查找与每个 match 相关的预测数据
|
|
|
+ {
|
|
|
+ $lookup: {
|
|
|
+ from: "predictions", // `Prediction` 集合的名称
|
|
|
+ localField: "_id", // `Match` 集合的 `_id`
|
|
|
+ foreignField: "match", // `Prediction` 集合中的 `match` 字段
|
|
|
+ as: "predictions" // 将关联结果存放在 `predictions` 字段中
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 3. $addFields 阶段:计算每个比赛的 `canyuNumber`
|
|
|
+ {
|
|
|
+ $addFields: {
|
|
|
+ canyuNumber: { $size: "$predictions" } // 计算 `predictions` 数组的长度,即参与预测的人数
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 4. $project 阶段:移除不需要的字段
|
|
|
+ {
|
|
|
+ $project: {
|
|
|
+ predictions: 0, // 去除 `predictions` 字段
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 5. 排序阶段:按 `date` 降序和 `time` 升序排序
|
|
|
+ {
|
|
|
+ $sort: {
|
|
|
+ date: -1,
|
|
|
+ time: 1
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 6. 跳过一定数量的文档,用于分页
|
|
|
+ {
|
|
|
+ $skip: skip
|
|
|
+ },
|
|
|
+ // 7. 限制返回的文档数量
|
|
|
+ {
|
|
|
+ $limit: pageSize
|
|
|
+ }
|
|
|
+ ]);
|
|
|
|
|
|
response = NextResponse.json({
|
|
|
success: true,
|