我正在设计用户API,部分API代码如下:
module.exports = {
findByEmail: (email) => {
db.collection('Users').findOne(email: email), (err, result) => {
assert.equal(err, null);
return new Promise(resolve) => {
resolve(result);
}
}
}
}
我的目的是让findByEmail
返回一个承诺,以便可以调用它,例如:
require('./models/User').findByEmail({email: 'user@example.com'})
.then((user) => {
console.log('User account', user);
});
然而,如上所述定义我的API并没有实现我想要的,因为内部函数是返回promise的函数,而外部函数(即findByEmail
)最终没有返回promise。如何确保外部函数使用内部函数返回的数据返回一个promise?
当然,使外部函数接受回调是一种选择,但这意味着外部函数不再具有可承诺性。
答案 0 :(得分:3)
首先返回承诺,然后让承诺回调函数完成剩下的工作。
module.exports = {
findByEmail: (email) => {
return new Promise((resolve, reject) => {
db.collection('Users').findOne(email: email), (err, result) => {
// assert.equal(err, null);
if (err) {
reject(err);
}
resolve(result);
}
}
}
}
答案 1 :(得分:0)
这里我调用了在获得响应后调用jquery ajax的listing(),我将一个函数getlistings()的promise返回给外部文件调用
function Listings(url){
var deferred = new $.Deferred();
$.ajax({
url: url,
method: 'GET',
contentType: 'application/json',
success: function (response) {
deferred.resolve(response);
},
error: function (response){
deferred.reject(response);
}
});
return deferred.promise();
};
// call from external file
function getListings(){
Listings('/listings.json').then(function(response){
console.log(response);
});
}