Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

From the docs (Mongoose v5.4.1, latest version):

Mongoose async operations, like .save() and queries, return thenables. This means that you can do things like MyModel.findOne({}).then()

second parapraph from the docs states:

Mongoose queries are not promises. They have a .then() function for co and async/await as a convenience.

What Javascript MDN webpage states:

The then() method returns a Promise.

Does this mean that mongoose has another kind of implementation for async functions where they reserved the then keyword for the result of the async action?

In other words, they act like promises but are not JS promises?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
187 views
Welcome To Ask or Share your Answers For Others

1 Answer

From the documentation:

Mongoose queries are not promises. They have a .then() function for co and async/await as a convenience. However, unlike promises, calling a query's .then() can execute the query multiple times.

So unlike an actual promise, if you call then() multiple times on the query, you actually execute the query (or update) multiple times.

If you want an actual promise, call exec() on the query.

let promise = Test.findOne({}).exec();

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

Just Browsing Browsing

[5] html - How to create even cell spacing within a

548k questions

547k answers

4 comments

86.3k users

...