nodejs - mongodb - 如何删除记录

时间:2011-06-15 15:54:28

标签: mongodb node.js

这是数据

{
    "username": "runrun",
    "channel": "all",
    "expire": NumberLong("1308183908743"),
    "_id": ObjectId("4df93f54e07324af47000001")
}

这是我以前用来删除记录的代码

db.collection('seesion',function(err, collection){
    collection.remove({
        "expire": {"$lte": Date.now()}
    },function(err, removed){
        console.log(removed);
    });
});

我想删除已过期的会话。问题是,代码不起作用,也许与numberLong有关?

1 个答案:

答案 0 :(得分:18)

看起来你拼错了“会话”(作为“会话”)。