javascript-用Strongloop回送实现Q
作者:互联网
Q是“supporting module” of loopback.我不确定这意味着什么,但我假设这至少意味着可以将Q与回送的持久模型功能(如find()或findOne())一起使用.我想知道如何正确设置以下内容:
app.models.Question.findOne({
where: {name: "My Question"}
}, function (err, result) {
throw err if err
}).then(function () {
console.log("success")
})
我已经使用NPM在项目目录中安装了Q,但据我所知,app.models.Question.findOne()仍返回未定义的值,而不是可用的Q承诺.
根据loopback docs,使用Q,
If a function cannot return a value or throw an exception without
blocking, it can return a promise instead.
在这种情况下,我需要做些什么才能获得环回以返回承诺?
解决方法:
对承诺的支持已成为核心,请参见:https://github.com/strongloop/loopback/issues/418
标签:q,node-js,promise,javascript,loopbackjs 来源: https://codeday.me/bug/20191120/2046282.html