使用exceljs时报错:no such file or directory

Posted ww01

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用exceljs时报错:no such file or directory相关的知识,希望对你有一定的参考价值。

最近使用exceljs生成excel并保存时,总是失败

 await workbook.xlsx.writeFile(tep)
                .then(function () {
                    context.result = {
                        state: true,
                        url: `算法生成的随机名称.xlsx`
                    }
                    //返回xlsx文件的下载位置
                    return context
                }, function (error) {
                    console.log(error)
                });

在打印的error中,总是说no such file or directory,把打印的地址拿出来访问确实访问不了,发现原来是系统环境问题

原来是在linux系统和windows系统中,地址是(linux)斜杠和(win)反斜杠分开的,因此在代码中进行兼容性处理,即用\\来表示\,我的项目环境是Nodejs,验证通过!!

         //linux环境
            let tep = process.cwd() + `/public/uploads/exp/${match[0] ? match[0].code : ""}_${yyy}.xlsx`;

            // windows环境
            let tep = process.cwd() + ‘\\src\\public\\uploads\\exp\\‘ + (match[0] ? match[0].code : ‘‘) + "_" + yyy + ‘.xlsx‘;

 

 

你的问题,也可能是:https://stackoverflow.com/questions/34811222/writefile-no-such-file-or-directory

以上是关于使用exceljs时报错:no such file or directory的主要内容,如果未能解决你的问题,请参考以下文章

pip 安装包时报错 /usr/bin/pip: No such file or directory

pycharm 用远程环境时报错bash: line 0: cd: /home/tmp: No such file or directory

pycharm 用远程环境时报错bash: line 0: cd: /home/tmp: No such file or directory

libcaffe.so.1.0.0: cannot open shared object file: No such file or directory 运行时报错

pycharm 用远程环境时报错bash: line 0: cd: /home/tmp: No such file or directory

iptables执行时报错"iptables : Couldn't load target `standard':No such file or directory"