我使用下面的代码工作正常,现在我需要在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;
});
现在我需要添加一些过程,如下所示: 现在应该返回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);
});
}
});
});
我用蓝鸟......
答案 0 :(得分:0)
只需从中做出承诺,并在您已有的代码之前将其链接起来......
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);
});