Express,Mongodb( Mongoose )-数据比较和计数

g2ieeal7  于 2022-11-13  发布在  Go
关注(0)|答案(1)|浏览(153)

在我的mongodb数据库中,我有如下数据:

  1. { id: 'ran1', code: 'ABC1', createdAt: 'Sep 1 2022', count: 5 }
  2. { id: 'ran2', code: 'ABC1', createdAt: 'Sep 2 2022', count: 3 }
  3. { id: 'ran3', code: 'ABC2', createdAt: 'Sep 1 2022', count: 2 }
  4. { id: 'ran4', code: 'ABC1', createdAt: 'Oct 1 2022', count: 1 }
  5. { id: 'ran5', code: 'ABC1', createdAt: 'Oct 2 2022', count: 2 }
  6. { id: 'ran6', code: 'ABC2', createdAt: 'Ocr 1 2022', count: 1 }

现在,作为输出,我需要10月份的所有数据,但我还需要计算和比较百分比。

  1. {code: 'ABC1', totalCount: the sum of total count of oct (1+2) =3 , percent: (total count of oct - total count of sep)/total count of oct * 100 }
  2. {code: 'ABC2', totalCount: 1, percent: -100}

我尝试使用两个不同的聚合来实现这些输出,然后将当前月份的聚合与上个月聚合中的每个元素进行Map。
这是我的代码

  1. const { filterDate, shop } = req.query;
  2. const splittedFilter = filterDate.split("-");
  3. const query = {
  4. shopUrl: { $regex: shop, $options: "i" },
  5. createdAt: {
  6. $gte: new Date(splittedFilter[0]),
  7. $lte: new Date(splittedFilter[1]),
  8. },
  9. };
  10. const currentCodes = await BlockedCode.aggregate([
  11. {
  12. $match: query,
  13. },
  14. {
  15. $group: {
  16. _id: "$discountCode",
  17. totalCount: { $sum: "$count" },
  18. },
  19. },
  20. ]);
  21. const prevQuery = {
  22. shopUrl: { $regex: shop, $options: "i" },
  23. createdAt: {
  24. $gte: new Date(splittedFilter[2]),
  25. $lte: new Date(splittedFilter[3]),
  26. },
  27. };
  28. const previousCodes = await BlockedCode.aggregate([
  29. {
  30. $match: prevQuery,
  31. },
  32. {
  33. $group: {
  34. _id: "$discountCode",
  35. totalCount: { $sum: "$count" },
  36. },
  37. },
  38. ]);
  39. const result = currentCodes.map((code) => {
  40. const foundPrevCode = previousCodes.find((i) => i._id === code._id);
  41. if (foundPrevCode?._id) {
  42. const prevCount = foundPrevCode?.totalCount;
  43. const currCount = code?.totalCount;
  44. const difference = currCount - prevCount;
  45. const percentage = (difference / currCount) * 100;
  46. return { ...code, percentage };
  47. } else {
  48. return { ...code, percentage: 100 };
  49. }
  50. });
vi4fp9gy

vi4fp9gy1#

@shahamar Rahman我不明白百分比逻辑,你能多解释一点吗?
到目前为止,我过滤和计算的数据基于10月的一个月,请检查它,让我知道如果它的帮助你
https://mongoplayground.net/p/Fet3UUI9LDC

  1. db.collection.aggregate([
  2. {
  3. $addFields: {
  4. month: {
  5. $month: {
  6. $toDate: "$createdAt"
  7. }
  8. }
  9. }
  10. },
  11. {
  12. $match: {
  13. month: 10
  14. }
  15. },
  16. {
  17. $group: {
  18. _id: {
  19. code: "$code"
  20. },
  21. count: {
  22. $sum: "$count"
  23. }
  24. }
  25. }
  26. ])
展开查看全部

相关问题