gpt4 book ai didi

javascript - Mongoose 里面的 promise 改变发生得很晚

转载 作者:行者123 更新时间:2023-11-28 05:22:50 25 4
gpt4 key购买 nike

我正在 NodeJS 中编写一个 API,其中使用 Mongoose 和 BlueBird。关于 promise 链,我的数据应该通过 waterfall 函数,但事实并非如此。让我的示例从 getTagNames 开始获取一些 JSON ,将数据提供给 retrieveTag 进行查询,最后得到 res.json() .

exports.getTagValues = function (req, res) {
var userId = req.params.uid;
getTagNames(req, res)
.then(retrieveTag)
.then(function (data) {
console.log('tags', data);
res.json(200, data);
})
.catch(function(err){
console.log('err', err);
//handle Error
})
}

这是我的玩具数据,

function getTagNames(req, res) {
var userId = req.params.uid;
return new Promise.resolve({
'userId': userId,
'variables': [
{ id: 1, name: 'hotel', type: 'String' },
{ id: 2, name: 'location', type: 'String' }
],
})
}

我查询数据的方式。在 mongo 内部查询后,我检查是否有带有 userID 的文档。如果没有,插入并返回文档。注意 Tag 是我的 mongo 模型

function retrieveTag(data){
Tag.findOne({'userId': data.userId})
.exec()
.then( function(tag){
if (tag) {
console.log('result', tag);
// do something ...
return tag;
}
else {
var newTag = new Tag({
advertiserId: advertiserId,
variables: variables
});
newTag.save()
.then(function () {
console.log('newTag', newTag);
return newTag;
});
}
})
}

这是我的结果(userId1),我的期望是 console.log('tags', data); 发生在那么所有data 不应该是未定义

tags undefined
GET /api/tag/values/1 200 3ms
newTag { __v: 0,
userId: '1',
_id: 581b96090e5916cf3f5112fe,
variables:
[ { type: 'String', name: 'hotel', id: 1 },
{ type: 'String', name: 'location', id: 2 } ] }

我的问题是如何解决它。如果有不清楚的地方,请帮我指正。

最佳答案

解释有点不清楚,但如果我按照你的说法正确的话,你会在 promise 解析链中丢失数据。

在阅读您的代码时,我注意到 retrieveTag 不会返回 Mongoose promise 。让 getTagValues 中的 .then 使用 retrieveTag 中找到的数据。

所以改成这样:

function retrieveTag(data){
return Tag.findOne({'userId': data.userId})
.exec()
.then( function(tag){
...
})
}

关于javascript - Mongoose 里面的 promise 改变发生得很晚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40410329/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com