8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

React 中的 .env

mxmissile 2月前

28 0

每次我尝试运行我的 api 调用时,我的密钥都是未定义的:https://api.rawg.io/api/games?key=undefined&dates=2022-04-03,2023-04-03&ordering=-rating&page_size=10h这是我的 api 文件:cons...

enter image description here每次我尝试运行我的 api 调用时,我的密钥都是未定义的: https://api.rawg.io/api/games?key=undefined&dates=2022-04-03,2023-04-03&ordering=-rating&page_size=10

这是我的 api 文件:const url = 'https://api.rawg.io/api/games?key=';

const getCurrentMonth = () => {
const month = new Date().getMonth() + 1
if (month < 10) {
    return `0${month}`
} else {
    return month
}
}

const getCurrentDay = () => {
const day = new Date().getDay()
if (day < 10) {
    return `0${day}`
} else {
    return day
}
}

const currentYear = new Date().getFullYear();
const currentMonth = getCurrentMonth();
const currentDay = getCurrentDay();
const currentDate = `${currentYear}-${currentMonth}-${currentDay}`;
const lastYear = `${currentYear - 1}-${currentMonth}-${currentDay}`;
const nextYear = `${currentYear + 1}-${currentMonth}-${currentDay}`;

const popularGames = `&dates=${lastYear},${currentDate}&ordering=-rating&page_size=10`;
const upcomingGames = `games?dates=${currentDate},${nextYear}&ordering=-added&page_size=10`
const upcomingGameURL = () => `${url}${process.env.REACT_APP_API_KEY}${upcomingGames}`
const popularGamesURL = () => `${url}${process.env.REACT_APP_API_KEY}${popularGames}`;
console.log(popularGamesURL())

这是我的环境文件:REACT_APP_API_KEY=bfd1ac5d55.........

文件结构如附图所示

本来应该正常工作的 api 调用成功了,但是后来就停止工作了?????我安装了 npm dotenv,我尝试了 require('dotenv').config(); ,当 console.log api 调用时它可以工作,但是当使用 react app 进行调用时它会导致另一个错误。

帖子版权声明 1、本帖标题:React 中的 .env
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由mxmissile在本站《api》版块原创发布, 转载请注明出处!
最新回复 (0)
  • 看起来在您的终端中 api key = undefined,似乎没有被正确解释......

  • NS22 2月前 0 只看Ta
    引用 3

    无论如何,您都不应该将 API 密钥嵌入到客户端代码中。这样一来,它就会与应用程序的每个用户共享。

返回
作者最近主题: