0

私はモデルを持っています:

var model = {
      created: { type: Date, default: Date.now }
    , data: { }
}

...しかし、私が使用しているガイドに従って、日付に基づいて選択することはできないようです. これが私が試していることです:

Model.find({
    created: { $lte: new Date('2012-03-16T20:54:35.630Z') }
}).run(function(err, models) {
    // ...
});

Mongoose がまた変更されたのでしょうか...それとも私のやり方が間違っているのでしょうか?

4

2 に答える 2

6

What you have looks ok. Here is a working example.

Are you getting error or just no results?

Another great place to get help is on the official forum here.

于 2012-04-17T15:12:51.633 に答える
0

.exec(function(err, ...代わりに ... に変更してみてください。

于 2014-06-04T16:48:36.373 に答える