如何在承诺之前添加额外的逻辑

How to add addional logic before promise

我使用以下代码运行正常,现在我需要在 readFileAsync 之前添加另一个查询 Dir 的方法,我的问题是如何做到这一点?

这是当前有效的代码

    var filePath = path.join(__dirname, '../userpath');

    return fs.readFileAsync(filePath, 'utf8')
        .then(pars.getEx.bind(null, 'user'))
        .then(process.bind(null, 'exec'))
        .then(function (result) {
            return result.stdout;
        }, function (error) {
            return error;
        });

现在我需要在之前添加一些流程,如下所示: 现在应该 return readfileAsync 的路径(-relFilePath) 我应该怎么做

var filePath = path.join(__dirname, '../../../../employess');

fs.readdir(filePath, function (err, files) {
    files.forEach(function (file) {
        if (file.indexOf('emp1') === 0) {

            // this should be returned 
            var relFilePath = filePath + '/' + file + '/unpath.txt';

            console.log(relFilePath);
            fs.readFile(relFilePath,'utf8', function read(err, data) {
                if (err) {
                    throw err;
                }
                console.log(data);
            });
        }
    });

});

我用蓝鸟...

只需从中做出承诺并将其链接到您已有的代码之前...

var filePath = path.join(__dirname, '../../../../employess');
fs.readdirAsync(filePath)
.then(function(files) {
    for (var i=0; i<files.length; i++)
        if (file.indexOf('emp1') === 0)
            return filePath + '/' + file + '/unpath.txt';
    throw new Error("no file with emp1 found");
})
.then(function(relFilePath) {
    return fs.readFileAsync(relFilePath, 'utf8');
})
.then(pars.getEx.bind(null, 'user'))
.then(process.bind(null, 'exec'))
.then(function (result) {
    return result.stdout;
}).then(function(data) {
    console.log(data);
}, function (error) {
    console.error(error.message);
});