gpt4 book ai didi

javascript - 如何使用 Promise.promisify 确保正确的 "this"?

转载 作者:可可西里 更新时间:2023-11-01 02:24:07 24 4
gpt4 key购买 nike

我正在尝试使用 Bluebird 库的 promise 来重构我的 nodejs 服务器,但我遇到了一个简单的问题。

从我的数据库中获取用户后,我想列出与该用户关联的所有通知类:

糟糕的方式(工作...)

adapter.getUsers(function(users){
users.rows.forEach(function(item){
user = item.username;
adapter.getNotifications(user, function(notificationList){
console.log(notificationList);
})
});
});

优雅的尝试方式(不工作...)

var getNotifications = Promise.promisify(adapter.getNotifications);
adapter.getUsers().then(function(users) {
users.rows.forEach(function(item){
var dbUser = "sigalei/" + item.value.name;
console.log(dbUser);
return getNotifications(dbUser);
});
}).then(function(result){
console.log(result);
console.log("NOTIFICATIONLIST");
});

但是,当我执行此代码时,我在 getNotification 方法中收到此错误:

Unhandled rejection TypeError: Cannot read property 'nano' of undefined at Adapter.getNotifications (/Users/DaniloOliveira/Workspace/sigalei-api/api/tools/couchdb-adapter.js:387:30) at tryCatcher (/Users/DaniloOliveira/Workspace/sigalei-api/node_modules/bluebird/js/main/util.js:26:23)

编辑

在 user2864740 的宝贵评论之后,我注意到该错误与某些范围问题有关。那么,为什么在使用 promisify 方法后,getNotifications 方法无法识别“this”环境变量?

var Adapter = module.exports = function(config) {
this.nano = require('nano')({
url: url,
request_defaults: config.request_defaults
});
};

Adapter.prototype.getNotifications = function(userDb, done) {

var that = this;
console.log(that);
var userDbInstance = that.nano.use(userDb);
userDbInstance.view('_notificacao', 'lista',
{start_key: "[false]", end_key: "[false,{}]"},
function(err, body) {
if(err){ done(err); }
done(body);
});

};

最佳答案

这只是很常见的problem of calling "unbound" methods .
您可以将上下文作为选项传递给 Promise.promisify绑定(bind)它:

var getNotifications = Promise.promisify(adapter.getNotifications, {context: adapter});

或者,您需要.bind() 方法,或在适配器 上调用新的getNotifications 函数(使用.调用())。您还可以考虑使用 Promise.promisifyAll(adapater),然后只调用 adapter.getNotificationsAsync(…)

请注意,这仍然不起作用。您不能简单地在循环中创建 promise - 您需要显式等待它们并从 then 回调中返回一个 promise ,否则您返回的 undefined 值将被传递给立即回调。

adapter.getUsers().then(function(users) {
return Promise.all(users.rows.map(function(item){
var dbUser = "sigalei/" + item.value.name;
console.log(dbUser);
return getNotifications(dbUser);
}));
}).then(function(results) {
for (var i=0; i<results.length; i++)
console.log("result:", results[i]);
});

除了 Promise.all(users.rows.map(…)),在 Bluebird 中你还可以使用 Promise.map(users.rows, …)

关于javascript - 如何使用 Promise.promisify 确保正确的 "this"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32509904/

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