gpt4 book ai didi

node.js - Node JS 中的 URL 作为环境变量

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

我正在 Node js 和 Cassandra 中为 HTTP 请求(GET、POST、PUT、DELETE)创建一个微服务。我想知道我们是否可以将 URL 设置为另一个文件中的环境变量,然后传递它来发出任何特定请求?

最佳答案

您可以在 config.js 文件中使用配置变量,如下所示:

var myConfig = {
url: <your url>
}

module.exports = myConfig;

然后将其导入到另一个文件中:

const myConfig = require('./myConfig');

console.log(myConfig.url);

环境变量的处理方式不同。

您使用环境变量启动 Node :

URL=<MyURL> node index.js

然后你可以像这样引用环境变量:

console.log(process.env.URL)

关于node.js - Node JS 中的 URL 作为环境变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52594333/

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