此问题在此处已有答案:
dotenv file is not loading environment variables(28个回答)
21小时前关闭
我在node中使用dotenv,我的.env位于config文件夹中(我不知道这是否是最佳实践),我无法将其中的API密钥导入到另一个文件中(在本例中,是routes文件夹中的weather.js)enter image description here
当我手动将API密钥放在URL中时,它可以工作。
enter image description here的
我尝试改变.env文件的文件夹位置,并尝试了require('dotenv').config()的一些配置
1条答案
按热度按时间nhhxz33t1#
可以尝试在配置
require('dotenv').config()
中定义路径字符串
更多详情请参见:https://stackoverflow.com/a/77631539/6754506