gpt4 book ai didi

javascript - 在 linux 脚本上找不到文件,但在 windows 上它可以

转载 作者:太空宇宙 更新时间:2023-11-04 12:04:29 24 4
gpt4 key购买 nike

我有一个需要 client_secret.json 文件的脚本,在 Windows 上,scipt 可以毫无问题地找到它,但是当我把它放在我的 ubuntu 服务器上时,它给出了一个错误,说它找不到路径。这是为什么?mmy 代码如下所示:

fs.readFile('./client_secret.json', (err, content) => {
if (err) return console.log('Error loading client secret file:', err);
// Authorize a client with credentials, then call the Google Sheets API.
authorize(JSON.parse(content), methodname);
});

正如我所说,在 linux 上它运行到错误分支上,但在 windows 上它运行完美。

最佳答案

这有效:s.readFile(path.join(__dirname, 'client_secret.json')不要忘记 npm i 路径

关于javascript - 在 linux 脚本上找不到文件,但在 windows 上它可以,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51175251/

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