将两个日期与不同格式与React中的MongoDB查询运算符进行比较

发布于 2025-01-22 15:55:31 字数 901 浏览 0 评论 0原文

我很难通过查询日期过滤。

问题是,从我的CMS中,日期以两种不同的格式出现,我不知道为什么:

Mon Jan 02 2006 05:00:00 GMT-0300 (Argentina Standard Time)
2019-06-17T00:00:00-07:00

在我的查询中,我试图在两个不同的日期之间获取这些格式,并且两者都处于第二种格式之间显示(2019-06-17T00:00:00-07:00)。

我的过滤器包括以下内容:

    const sets = await builder.getAll('open-dataset', {
      options: { noTargeting: true },
      omit: 'data.blocks',
      limit: 100,
      query: {
        data: {
          date: { $gte: newMinYear, $lte: newMaxYear },
          title: { $regex: search, $options: 'i' },
        }
      }
    });

PD:标题查询正在正常工作,

我该如何完成?因为该过滤器仅适用于具有相同日期格式的人,并且它避免使用该过滤器2006年1月2日星期一05:00:00 GMT-0300(Argentina Standard Time)

另外,我不能将javascript添加到date,如果没有,我会做new Date(Date)之类的事情。

谁能在这里帮我吗?谢谢

I'm having trouble trying to filter by date in my query.

The problem is that from my CMS, the dates are coming in two different formats and I don't know why:

Mon Jan 02 2006 05:00:00 GMT-0300 (Argentina Standard Time)
2019-06-17T00:00:00-07:00

In my query, I'm trying to fetch the ones that are between two different dates, and both are in the second format shown (2019-06-17T00:00:00-07:00).

My filter consists in the following:

    const sets = await builder.getAll('open-dataset', {
      options: { noTargeting: true },
      omit: 'data.blocks',
      limit: 100,
      query: {
        data: {
          date: { $gte: newMinYear, $lte: newMaxYear },
          title: { $regex: search, $options: 'i' },
        }
      }
    });

pd: The title query is working

How can I accomplish this? because the filter is only working for those who has the same date format, and it's avoiding the ones with this one Mon Jan 02 2006 05:00:00 GMT-0300 (Argentina Standard Time).

Also, I can't add javascript to date, if not, I would have done something like new Date(date).

Can anyone help me here? thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文