gpt4 book ai didi

javascript - 使用多种模式时出现 Node 全局错误

转载 作者:行者123 更新时间:2023-12-03 06:54:59 24 4
gpt4 key购买 nike

我使用的 Node glob 工作正常。我将它用于一个文件夹1,如下所示

      glob('folder1/*.js'), function(err, files){
if (err) {
console.log('Not able to get files from folder: ', err);
} else {
files.forEach(function (file) {

https://github.com/isaacs/node-glob

现在我也想从folder2中读取一次,我尝试使用如下所示的globby,但出现错误

    globby(['folder1/*.js','folder2/*.js']).then( function(err, files){
if (err) {
console.log('Not able to get files from folder: ', err);
} else {
//Get plugin configuration & provided actions
files.forEach(function (file) {

https://github.com/sindresorhus/globby

在这种情况下,文件以undfiend的形式出现,我得到了错误,不知道为什么

最佳答案

尝试从 then 回调中删除 err 参数。使用catch来处理错误globby(['folder1/*.js','folder2/*.js']).then( function(files){...}).catch(function(err){...})

关于javascript - 使用多种模式时出现 Node 全局错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37318700/

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