1

所以,我几个小时以来一直在尝试这个,但没有得到任何结果。

我有一个具有日期值的 MongoDB 集合"scrape_systemTime",我将其插入到scrape_systemTime : new Date().

我正在尝试通过使用以下方法获得一周前的结果:

db.scrape.find({scrape_systemTime: { $lt: new Date( Date.now() - 86400000*7)}})

它应该返回一组看起来像下面的对象的文档,但它什么也不返回。(查看"scrape_systemTime"属性,它有一周前的日期。)

[{
        "newspaperID" : "6",
        "scrape_systemTime" : "Fri Oct 25 2013 13:14:10 GMT+0000 (UTC)",
        "_id" : ObjectId("526a6ea1985ba76408000010"),
        "languageID" : "1",
        "scrape_tabs_title" : "India",
        "scrape_tabs_href" : "http://www.indianexpress.com/supplement/India/798/",
        "scrape_thumb" : "images/default/noimage.jpg",
        "scrape_href" : "http://www.indianexpress.com/news/political-parties-woo-chhattisgarh-youth-on-facebook-whatsapp/1187180/",
        "scrape_title" : "Political parties woo Chhattisgarh youth on Facebook, WhatsApp",
        "scrape_largeimage" : "http://static.indianexpress.com/m-images/Fri Oct 25 2013, 17:57 hrs/M_Id_433064_facebook.jpg",
        "scrape_detail_article_text" : "",
        "scrape_newstime" : "PTI : Raipur, Fri Oct 25 2013, 18:11 hrs",
        "scrape_status" : "Pending",
        "viewCount" : 0,
        "error_log" : "OK",
        "ip" : "192.168.0.101"
}, ...]

但是,如果我使用_idfor date 条件,即ObjectId()使用一周前的时间戳创建并在查询中使用,如下所示:

db.scrape.find({_id: { $lt: ObjectId( Math.floor( new Date( Date.now() - 86400000*7 ) / 1000 ).toString(16) + '0000000000000000')}})

它返回预期的结果。

为什么会这样?第一个查询语法有什么问题吗?

图片在这里

谢谢。

4

1 回答 1

3

您文档中的scrape_systemTime字段是一个字符串,而不是Date解释您的查询为什么不起作用的字符串。

因此,一定是您没有像您认为的那样插入您的文档,因为如果您将该字段插入为:

scrape_systemTime: Date()
于 2013-11-01T13:24:28.190 回答