gpt4 book ai didi

node.js - 如何在带有 typescript 项目的 react js 中使用 .env 文件?

转载 作者:行者123 更新时间:2023-12-03 12:17:46 25 4
gpt4 key购买 nike

我有一个 react js 项目,但是有 typescript 。我知道我们可以创建 .env 文件并定义一些配置,
.env 文件

REACT_APP_SOME_CONFIGURATION = "some value" 
并在代码中使用它,无需导入任何内容,如下所示
const configValue = process.env.REACT_APP_SOME_CONFIGURATION 
我在我的项目中尝试了这个设置,但没有用。是因为它是 typescript 吗?如何在这种情况下使用 .env 文件。

最佳答案

在 TypeScript 中,你需要设置返回值,如果这个字符串这样做了

const configValue : string = process.env.REACT_APP_SOME_CONFIGURATION 
或者
const configValue: string = (process.env.REACT_APP_SOME_CONFIGURATION as string);

关于node.js - 如何在带有 typescript 项目的 react js 中使用 .env 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64453045/

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